blob: 09ed398ee9ac4a59cc9f39b71403fcfd1b96a467 (
plain) (
blame)
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
|
* {
box-sizing: border-box;
}
:root {
font-family: sans-serif;
}
body {
margin: 0;
}
body > main {
margin: auto;
max-width: 1024px;
}
h1.header {
margin-top: 0.75em;
text-align: center;
}
fieldset + fieldset,
fieldset + input,
section + section,
section + fieldset
{
margin-top: 0.75em;
}
input[type="submit"] {
margin-left: auto;
display: block;
}
form > fieldset > section > label {
width: 100%;
display: block;
}
form > fieldset > section > input, form > fieldset > section > textarea {
width: 100%;
}
textarea {
min-height: 10em;
}
|