-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
59 lines (51 loc) · 827 Bytes
/
index.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
50
51
52
53
54
55
56
57
58
59
html {
margin: 0;
color: #000000;
background-color: #e0e0e0;
font-family: monospace;
font-size: 16px;
}
body {
margin: 0;
padding: 80px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr;
gap: 80px;
}
body > div {
display: flex;
flex-direction: column;
gap: 20px;
}
h1,
h2 {
margin: 0;
font-weight: 400;
}
p {
margin: 0;
margin-top: 20px;
line-height: 1.4rem;
}
form {
margin: 0;
display: flex;
flex-direction: column;
}
form label {
margin-bottom: 5px;
}
form input {
margin-bottom: 20px;
padding: 10px;
box-sizing: border-box;
font-family: inherit;
font-size: inherit;
}
form button {
padding: 10px;
box-sizing: border-box;
font-family: inherit;
font-size: inherit;
}