-
Notifications
You must be signed in to change notification settings - Fork 0
/
screen.css
226 lines (206 loc) · 7.17 KB
/
screen.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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/*================
Screen styles
Version 1.0
Author: Tangent Snowball FED team
Created: 12.19.2011
Last revised: 03.16.2012
Contents:
--
==================*/
/*========
[=0: Set font-face rules]
========*/
/*========
[=1: html5doctor.com reset]
v1.6.1 | Last Updated: 2010-09-17 | Author: Richard Clark (richclarkdesign.com)
(jack.armley@tangentsnowball.com: Some lines have been modified, to remove unneccesary styles that will be immediately overridden by the base styles)
========*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{ display:block;}
nav ul{list-style:none;margin-left:0;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,
q:before,q:after{content:'';content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
del{text-decoration:line-through;}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}
table{border-collapse:collapse;border-spacing:0;}
input,select{vertical-align:middle;}
ins{text-decoration:none;}
hr{display:block;height:1px;border:0;padding:0;}
/*========
[=2:Base globally-available styles]
======== */
/*--[=2a:Typography]--*/
/*-Set webfont stacks for all applicable elements-*/
/*-Set base rules for all typographic elements*/
/*Set base font-family/line-height and declare the px size of an em unit*/
body{font:16px/1.5em Arial,helvetica,sans-serif;color:#111;}
/*Block elements*/
p{margin:0 0 1em 0;line-height:1.5em;}
hgroup{position:relative;}
h1,h2,h3,h4,h5,h6{font-size:1em;line-height:1.3em;font-weight:normal;margin:2em 0 0.5em 0;color:#111;}
h1{font-size:3em;margin:1em 0 0.75em 0;}
h2{font-size:1.5em;font-weight:bold;}
h3{font-size:1.2em;font-weight:bold;}
ul,ol,dl{margin:0 0 1em 2.5em;padding:1em 0 0 0;}
ul li,ol li{margin:0 0 0.5em 0;}
ul{list-style:disc outside;}
ul ul{margin:0.25em 0 0.5em 1em;}
ol{list-style:decimal outside;}
ol ol{margin:0.25em 0 0.5em 1.4em;list-style-type:lower-roman;}
dl{padding:0;}
dt{font-weight:bold;margin:0 0 0.5em 0;padding:1em 0 0 0;}
dd{margin:0 0 0.5em 0;}
blockquote{margin:0 0 2.5em 0;padding:1em 0 0 0;font-style:italic;}
blockquote p{color:#1AAB8A;margin-left:2.5em;}
blockquote footer{display:block;margin:-0.5em 0 0 2.5em;}
hr{border-top:1px dotted #ccc;padding:1.1em 0;margin:2.1em 0 0 0;}
pre{
white-space:pre;
width:100%;
overflow:auto;
margin:1.1em 0;
padding:1em;
border-left:none;
border-right:none;
background:#eee;
text-shadow:0 1px 0 #fff;
box-shadow:inset 0 0 3px #ccc;
box-sizing:border-box;
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
border-radius:0.25em;
}
p pre{margin:0;padding:0;border:none;}
/*Inline elements*/
/*Superscript/subscript*/
sup,sub{position:relative;height:0;line-height:0.1em;}
sup{bottom:1ex;}
sub{top:.5ex;}
/*For marking up content relevency/edits and highlighting content*/
ins{background-color:#B8EEE1;}
del{text-decoration:line-through;}
s{color:#666;text-decoration:line-through;}
mark{background-color:#B8EEE1;color:inherit;font-weight:normal;}
/*Inline quotes / small print*/
q{font-style:italic;color:#1AAB8A;}
cite{font-style:italic;}
small{font-weight:normal;font-style:normal;}
/*phrase tags*/
strong,b{font-weight:bold;}
em,i{font-style:italic;}
dfn,abbr{font-style:inherit;}
code,samp,kbd{font-family:monospace,courier;}
var{font-style:italic;font-weight:bold;}
/*--[=2b:Links]--*/
:focus{outline:none;}
/*-Inline links-*/
a{color:#666;text-decoration:none;}
a:link{color:#666;text-decoration:none;}
a:visited{color:#666;text-decoration:underline;}
a:hover{color:#111;text-decoration:none;}
a:active{color:#666;text-decoration:none;}
/*-Linked images-*/
a img{border:none;}
/*--[=2c:Images]--*/
/*Standalone*/
img{margin:0 0 1em 0;padding:0.14em 0 0 0;}
/*Within a figure tag*/
figure{margin:0 0 2.08em 0;}
figure img{margin:0 0 0.41em 0;}
figure figcaption{font-size:0.85em;margin:0;}
/*--[=2d:Forms]--*/
/*Set global constants*/
form{margin:0 0 1em 0;}
legend{margin:0 0 0.25em 0;}
label{display:block;margin:0 0 0.25em 0;}
/*Set styles for full forms (sets of inputs/labels should always be encased in an ordered list for example)*/
input,textarea{display:block;width:auto;margin:0 0 0.78em 0;padding:0.5em 5px;border:1px solid #D1D1D1;font-size:1em;line-height:1.4em;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
input[type="radio"],input[type="checkbox"]{width:auto;border:none;}
legend{display:none;}
/*--[=2e:Tables]--*/
table{margin:0 0 1em 0;width:100%;border:1px solid #ccc;}
caption{text-align:left;padding:0 0 0.5em 0;}
td,th{padding:0.35em 1em;text-align:left;border:1px dotted #ccc;}
thead{border-bottom:2px solid #ccc;font-weight:bold;}
thead th{border-style:solid;background:#eee;text-shadow:0 1px 1px #fff;}
tfoot{font-style:italic;}
/*--[=2d:Display modifiers]--*/
/*Hide an element*/
.inv{text-indent:-90000px;height:0;position:absolute;}
/* Universal clear */
.clear{clear:both;display:block;overflow:hidden;}
/* Enhanced Universal Clearfix hack */
.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}
.clearfix{display:inline-block;}
/* Start commented backslash hack \*/
* html .clearfix{height:1%;}
.clearfix{display:block;}
/* Close commented backslash hack */
/*========
[=3:Modular components]
======== */
/*========
[=4:Global layout styles]
======== */
/*========
[=5:Section-specific layout styles]
======== */
/*========
[=6:Media queries]
======== */
/*========
[=7:Third-party styles]
======== */
/*--[=7a: Prettify JS]--*/
.pln{color:#000}
@media screen{
.str{color:#080}
.kwd{color:#008}
.com{color:#800}
.typ{color:#606}
.lit{color:#066}
.pun,.opn,.clo{color:#660}
.tag{color:#008}
.atn{color:#606}
.atv{color:#080}
.dec,.var{color:#606}
.fun{color:red}
}
@media print,projection{
.str{color:#060}
.kwd{
color:#006;
font-weight:bold;
}
.com{
color:#600;
font-style:italic;
}
.typ{
color:#404;
font-weight:bold;
}
.lit{color:#044}
.pun,.opn,.clo{color:#440}
.tag{
color:#006;
font-weight:bold;
}
.atn{color:#404}
.atv{color:#060}
}
ol.linenums{
margin-top:0;
margin-bottom:0;
}
li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{
list-style-type:none;
}
li.L1,li.L3,li.L5,li.L7,li.L9{
background:#eee;
}
/*========
[=8:Vendor-specific styles]
======== */