-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
49 lines (39 loc) · 895 Bytes
/
main.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
* Copyright (C) Oliver Lenehan, 2021 */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');
*,*::before,*::after{box-sizing:inherit;}
:root {
box-sizing: border-box;
font-family: "Lexend";
}
header {
margin: 0 auto;
max-width: 600px;
text-align: center;
}
footer {
margin: 0 auto;
max-width: 600px;
text-align: center;
}
main {
text-align: center;
}
form {
margin: 0 auto;
max-width: 12em;
}
form > p:nth-child(1) {
display: block;
}
form > p > label {
display: block;
text-align: left;
}
form > p > input , form > p > select {
display: block;
width: 100%;
font-family: "Lexend";
}