Add title to website
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
3a69bdb0ad
commit
09edf127a5
2 changed files with 8 additions and 1 deletions
|
@ -4,12 +4,13 @@
|
|||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Document</title>
|
||||
<title>MagSend</title>
|
||||
<link href="./styles/main.css" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main>
|
||||
<h1>MagSend</h1>
|
||||
<!-- The pattern on the input will only match valid ASCII characters -->
|
||||
<input
|
||||
required
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
body {
|
||||
margin: 0;
|
||||
font-family: sans-serif;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
main {
|
||||
|
@ -21,6 +22,11 @@ main {
|
|||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
padding: var(--spacing);
|
||||
|
|
Reference in a new issue