-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (75 loc) · 1.13 KB
/
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
body {
font-family: 'DINNextRoundedLTProLight', Arial, Helvetica, sans-serif;
background-color: #EAEAEA;
margin: 0px;
}
strong {
font-weight: bold;
}
pre {
font-family: "Consolas", monospace;
padding: 10px;
background-color: white;
font-size: 12px;
}
h1, h2, h3 {
font-weight: bold;
}
#container > h1 {
background-color: white;
padding: 10px;
}
h1 {
font-size: 2.5em;
margin-bottom: 1em;
}
h2{
font-size: 1.5em;
margin-bottom: 1em;
}
h3{
font-size: 1.2em;
margin-bottom: 1em;
}
p {
margin-bottom: 1em;
line-height: 1.5em;
}
body > #container{
margin: 0 auto;
width: 700px;
padding: 0px 50px;
background-color: #F2F2F2;
}
section > h1 {
font-size: 1.2em;
border-bottom: 1px solid #CCC;
margin-bottom: 0.2em;
margin-top: 2em;
padding-bottom: 0.2em;
}
section > h2 {
font-size: 1em;
margin-bottom: 0px;
}
section p {
margin-bottom: 0.5em;
}
footer{
margin-top: 40px;
margin-bottom: 40px;
text-align: center;
padding-bottom: 1em;
}
textarea.big {
height: 100px;
}
input.big,
textarea.big {
width: 600px;
padding: 5px;
font-size: 12px;
}
.code {
display: none;
}