Add title to website

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2022-11-24 14:57:09 +01:00
parent 3a69bdb0ad
commit 09edf127a5
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
2 changed files with 8 additions and 1 deletions

View file

@ -4,12 +4,13 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title> <title>MagSend</title>
<link href="./styles/main.css" rel="stylesheet" /> <link href="./styles/main.css" rel="stylesheet" />
</head> </head>
<body> <body>
<main> <main>
<h1>MagSend</h1>
<!-- The pattern on the input will only match valid ASCII characters --> <!-- The pattern on the input will only match valid ASCII characters -->
<input <input
required required

View file

@ -10,6 +10,7 @@
body { body {
margin: 0; margin: 0;
font-family: sans-serif; font-family: sans-serif;
font-size: 100%;
} }
main { main {
@ -21,6 +22,11 @@ main {
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
} }
h1 {
text-align: center;
font-size: 3rem;
}
input { input {
width: 100%; width: 100%;
padding: var(--spacing); padding: var(--spacing);