-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
71 lines (59 loc) · 834 Bytes
/
style.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
60
61
62
63
64
65
66
67
68
69
70
71
*,
*:before,
*:after {
box-sizing: border-box;
}
body {
background: #fff;
color: #000;
font: normal 62.5%/1 Arial, 'Helvetica Neue', Helvetica, sans-serif;
margin: 20px;
}
h1,
h2,
p {
margin: 0 auto 5px;
max-width: 760px;
min-width: 400px;
}
h1 {
font-size: 3em;
}
h2 {
font-size: 1.8em;
margin-top: 30px;
}
p {
font-size: 1.2em;
margin-bottom: 10px;
}
p.hide {
display: none;
}
p > a,
p > a:visited {
color: #f00;
text-decoration: underline;
}
p > a:hover {
text-decoration: none;
}
p > label,
p > input,
p > select {
vertical-align: middle;
}
p > label {
display: inline-block;
width: 120px;
}
p > input,
p > select {
font-size: 100%;
margin: 0;
}
p > textarea {
font: normal 14px/1 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
height: 400px;
width: 100%;
}