main.css
2.89 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/* ---------------------------------------- */
/* COMMON */
/* ---------------------------------------- */
* {
margin: 0;
}
body {
padding-top: 20px;
}
h1 {
color: #045FB4;
font-family: 'Gilda Display', serif;
}
a, a:visited {
color: #045FB4;
text-decoration: none;
}
a:hover {
color: #b4052c;
}
hr {
border-bottom: 1px solid #eee;
border-top: 0;
margin: 10px 0;
}
input[type="text"] {
background-color: #ffffff;
border: 1px solid #cccccc;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
line-height: 20px;
color: #555555;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
height: 20px;
padding: 4px 6px;
}
i {
font-size: 10px;
}
/* ---------------------------------------- */
/* HEADER */
/* ---------------------------------------- */
header {
text-align: center;
}
/* ---------------------------------------- */
/* FOOTER */
/* ---------------------------------------- */
footer {
margin: 30px auto 30px auto;
width: 900px;
border-top: 1px solid #CACACA;
padding-top: 15px;
text-align: center;
}
/* ---------------------------------------- */
/* CODE */
/* ---------------------------------------- */
code {
padding: 2px 4px;
font-size: 90%;
color: #254CC7;
white-space: nowrap;
background-color: #F2F7F9;
border-radius: 4px;
}
code, kbd, pre, samp {
font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
}
pre {
display: block;
padding: 10px;
margin: 0 0 10.5px;
font-size: 14px;
line-height: 1.428571429;
color: #7b8a8b;
word-break: break-all;
word-wrap: break-word;
background-color: #ecf0f1;
border: 1px solid #ccc;
border-radius: 4px;
}
pre code {
padding: 0;
font-size: inherit;
color: inherit;
white-space: pre-wrap;
background-color: transparent;
border-radius: 0;
}
aside {
float: left;
width: 55%;
}
/* ---------------------------------------- */
/* MAIN CONTENT */
/* ---------------------------------------- */
article {
background-color: #FFF;
padding: 30px 30px 0 30px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
line-height: 1.428571429;
color: #333;
}
article h1 {
border-bottom: 1px solid #CACACA;
padding-bottom: 15px;
margin-bottom: 10px;
font-size: xx-large;
}
article h3 {
font-size: x-large;
margin-bottom: 10px;
}
section:before, section:after {
display: table;
content: " ";
}
section:after {
clear:both;
}
.container {
margin: 0 auto;
width: 900px;
font: 13px Helvetica, arial, freesans, clean, sans-serif;
}
.demo .font-animation {
float: left;
width: 400px;
margin-bottom: 20px;
}
.font-animation i {
font-size: 1.5em;
}