corundum 0.3.9 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/corundum/core.rb +35 -51
- data/lib/corundum/documentation-task.rb +10 -30
- data/lib/corundum/gem_building.rb +6 -7
- data/lib/corundum/gemcutter.rb +10 -12
- data/lib/corundum/questionable-content.rb +9 -0
- data/lib/corundum/rspec-task.rb +34 -15
- data/lib/corundum/rspec.rb +25 -22
- data/lib/corundum/simplecov.rb +43 -22
- data/lib/corundum/tasklibs.rb +0 -3
- data/lib/corundum/version_control.rb +1 -1
- data/lib/corundum/version_control/git.rb +2 -2
- metadata +18 -86
- data/lib/corundum/default_configuration/templates/doc_assembly/index.html.erb +0 -40
- data/lib/corundum/default_configuration/templates/doc_assembly/stylesheet.scss +0 -326
- data/lib/corundum/default_configuration/templates/doc_assembly/theme/images/checker.png +0 -0
- data/lib/corundum/default_configuration/templates/doc_assembly/theme/javascripts/scale.fix.js +0 -17
- data/lib/corundum/default_configuration/templates/doc_assembly/theme/sass/styles.scss +0 -325
- data/lib/corundum/default_configuration/templates/doc_assembly/theme/stylesheets/pygment_trac.css +0 -60
- data/lib/corundum/default_configuration/templates/doc_assembly/theme/stylesheets/styles.css +0 -363
- data/lib/corundum/documentation.rb +0 -2
- data/lib/corundum/documentation/assembly.rb +0 -115
- data/lib/corundum/documentation/yardoc.rb +0 -70
- data/lib/corundum/email.rb +0 -82
- data/lib/corundum/github-pages.rb +0 -153
Binary file
|
data/lib/corundum/default_configuration/templates/doc_assembly/theme/javascripts/scale.fix.js
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
var metas = document.getElementsByTagName('meta');
|
2
|
-
var i;
|
3
|
-
if (navigator.userAgent.match(/iPhone/i)) {
|
4
|
-
for (i=0; i<metas.length; i++) {
|
5
|
-
if (metas[i].name == "viewport") {
|
6
|
-
metas[i].content = "width=device-width, minimum-scale=1.0, maximum-scale=1.0";
|
7
|
-
}
|
8
|
-
}
|
9
|
-
document.addEventListener("gesturestart", gestureStart, false);
|
10
|
-
}
|
11
|
-
function gestureStart() {
|
12
|
-
for (i=0; i<metas.length; i++) {
|
13
|
-
if (metas[i].name == "viewport") {
|
14
|
-
metas[i].content = "width=device-width, minimum-scale=0.25, maximum-scale=1.6";
|
15
|
-
}
|
16
|
-
}
|
17
|
-
}
|
@@ -1,325 +0,0 @@
|
|
1
|
-
@import url(https://fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700);
|
2
|
-
@import 'compass/css3';
|
3
|
-
|
4
|
-
html {
|
5
|
-
background:#6C7989;
|
6
|
-
@include background(#6C7989 linear_gradient(#6C7989, #434B55) fixed);
|
7
|
-
}
|
8
|
-
|
9
|
-
body {
|
10
|
-
padding:50px 0;
|
11
|
-
margin:0;
|
12
|
-
font:14px/1.5 Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
13
|
-
color:#555;
|
14
|
-
font-weight:300;
|
15
|
-
background:inline-image('checker.png') fixed;
|
16
|
-
}
|
17
|
-
|
18
|
-
.wrapper {
|
19
|
-
width:640px;
|
20
|
-
margin:0 auto;
|
21
|
-
background:#DEDEDE;
|
22
|
-
@include border-radius(8px);
|
23
|
-
@include box-shadow(rgba(#000, 0.2) 0 0 0 1px, rgba(#000, 0.45) 0 3px 10px);
|
24
|
-
}
|
25
|
-
|
26
|
-
header, section, footer {
|
27
|
-
display:block;
|
28
|
-
}
|
29
|
-
|
30
|
-
a {
|
31
|
-
color:#069;
|
32
|
-
text-decoration:none;
|
33
|
-
}
|
34
|
-
|
35
|
-
p {
|
36
|
-
margin:0 0 20px;
|
37
|
-
padding:0;
|
38
|
-
}
|
39
|
-
|
40
|
-
strong {
|
41
|
-
color:#222;
|
42
|
-
font-weight:700;
|
43
|
-
}
|
44
|
-
|
45
|
-
header {
|
46
|
-
@include border-radius(8px 8px 0 0);
|
47
|
-
background:#C6EAFA;
|
48
|
-
@include background(linear_gradient(#DDFBFC, #C6EAFA));
|
49
|
-
position:relative;
|
50
|
-
padding:15px 20px;
|
51
|
-
border-bottom:1px solid #B2D2E1;
|
52
|
-
|
53
|
-
h1 {
|
54
|
-
margin:0;
|
55
|
-
padding:0;
|
56
|
-
font-size:24px;
|
57
|
-
line-height:1.2;
|
58
|
-
color:#069;
|
59
|
-
text-shadow:rgba(#fff, 0.9) 0 1px 0;
|
60
|
-
}
|
61
|
-
|
62
|
-
&.without-description h1 {
|
63
|
-
margin:10px 0;
|
64
|
-
}
|
65
|
-
|
66
|
-
p {
|
67
|
-
margin:0;
|
68
|
-
color:#61778B;
|
69
|
-
width:300px;
|
70
|
-
font-size:13px;
|
71
|
-
|
72
|
-
&.view {
|
73
|
-
display:none;
|
74
|
-
font-weight:700;
|
75
|
-
text-shadow:rgba(#fff, 0.9) 0 1px 0;
|
76
|
-
-webkit-font-smoothing:antialiased;
|
77
|
-
|
78
|
-
a {
|
79
|
-
color:#06c;
|
80
|
-
}
|
81
|
-
|
82
|
-
small {
|
83
|
-
font-weight:400;
|
84
|
-
}
|
85
|
-
}
|
86
|
-
}
|
87
|
-
|
88
|
-
ul {
|
89
|
-
margin:0;
|
90
|
-
padding:0;
|
91
|
-
list-style:none;
|
92
|
-
position:absolute;
|
93
|
-
z-index:1;
|
94
|
-
right:20px;
|
95
|
-
top:20px;
|
96
|
-
height:38px;
|
97
|
-
padding:1px 0;
|
98
|
-
background:#5198DF;
|
99
|
-
@include background(linear_gradient(#77B9FB, #3782CD));
|
100
|
-
border-radius:5px;
|
101
|
-
@include box-shadow(inset rgba(#fff, 0.45) 0 1px 0, inset rgba(#000, 0.2) 0 -1px 0);
|
102
|
-
width:240px;
|
103
|
-
|
104
|
-
&:before {
|
105
|
-
content:'';
|
106
|
-
position:absolute;
|
107
|
-
z-index:-1;
|
108
|
-
left:-5px;
|
109
|
-
top:-4px;
|
110
|
-
right:-5px;
|
111
|
-
bottom:-6px;
|
112
|
-
background:rgba(#000, 0.1);
|
113
|
-
@include border-radius(8px);
|
114
|
-
@include box-shadow(rgba(#000, 0.2) 0 -1px 0, inset rgba(#fff, 0.7) 0 -1px 0);
|
115
|
-
}
|
116
|
-
|
117
|
-
li {
|
118
|
-
width:79px;
|
119
|
-
float:left;
|
120
|
-
border-right:1px solid #3A7CBE;
|
121
|
-
height:38px;
|
122
|
-
}
|
123
|
-
|
124
|
-
li + li {
|
125
|
-
width:78px;
|
126
|
-
border-left:1px solid #8BBEF3;
|
127
|
-
}
|
128
|
-
|
129
|
-
li + li + li {
|
130
|
-
border-right:none;
|
131
|
-
width:79px;
|
132
|
-
}
|
133
|
-
|
134
|
-
a {
|
135
|
-
line-height:1;
|
136
|
-
font-size:11px;
|
137
|
-
color:#fff;
|
138
|
-
color:rgba(#fff, 0.8);
|
139
|
-
display:block;
|
140
|
-
text-align:center;
|
141
|
-
font-weight:400;
|
142
|
-
padding-top:6px;
|
143
|
-
height:40px;
|
144
|
-
text-shadow:rgba(#000, 0.4) 0 -1px 0;
|
145
|
-
|
146
|
-
strong {
|
147
|
-
font-size:14px;
|
148
|
-
display:block;
|
149
|
-
color:#fff;
|
150
|
-
-webkit-font-smoothing:antialiased;
|
151
|
-
}
|
152
|
-
}
|
153
|
-
}
|
154
|
-
}
|
155
|
-
|
156
|
-
section {
|
157
|
-
padding:15px 20px;
|
158
|
-
font-size:15px;
|
159
|
-
border-top:1px solid #fff;
|
160
|
-
@include background(linear_gradient(#fafafa, #DEDEDE 700px));
|
161
|
-
@include border-radius(0 0 8px 8px);
|
162
|
-
position:relative;
|
163
|
-
}
|
164
|
-
|
165
|
-
h1, h2, h3, h4, h5, h6 {
|
166
|
-
color:#222;
|
167
|
-
padding:0;
|
168
|
-
margin:0 0 20px;
|
169
|
-
line-height:1.2;
|
170
|
-
}
|
171
|
-
|
172
|
-
p, ul, ol, table, pre, dl {
|
173
|
-
margin:0 0 20px;
|
174
|
-
}
|
175
|
-
|
176
|
-
h1, h2, h3 {
|
177
|
-
line-height:1.1;
|
178
|
-
}
|
179
|
-
|
180
|
-
h1 {
|
181
|
-
font-size:28px;
|
182
|
-
}
|
183
|
-
|
184
|
-
h2 {
|
185
|
-
color:#393939;
|
186
|
-
}
|
187
|
-
|
188
|
-
h3, h4, h5, h6 {
|
189
|
-
color:#494949;
|
190
|
-
}
|
191
|
-
|
192
|
-
blockquote {
|
193
|
-
margin:0 -20px 20px;
|
194
|
-
padding:15px 20px 1px 40px;
|
195
|
-
font-style:italic;
|
196
|
-
background:#ccc;
|
197
|
-
background:rgba(#000, 0.06);
|
198
|
-
color:#222;
|
199
|
-
}
|
200
|
-
|
201
|
-
img {
|
202
|
-
max-width:100%;
|
203
|
-
}
|
204
|
-
|
205
|
-
code, pre {
|
206
|
-
font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal;
|
207
|
-
color:#333;
|
208
|
-
font-size:12px;
|
209
|
-
overflow-x:auto;
|
210
|
-
}
|
211
|
-
|
212
|
-
pre {
|
213
|
-
padding:20px;
|
214
|
-
background: #3A3C42;
|
215
|
-
color:#f8f8f2;
|
216
|
-
margin:0 -20px 20px;
|
217
|
-
|
218
|
-
code {
|
219
|
-
color:#f8f8f2;
|
220
|
-
}
|
221
|
-
|
222
|
-
li & {
|
223
|
-
margin-left:-60px;
|
224
|
-
padding-left:60px;
|
225
|
-
}
|
226
|
-
}
|
227
|
-
|
228
|
-
table {
|
229
|
-
width:100%;
|
230
|
-
border-collapse:collapse;
|
231
|
-
}
|
232
|
-
|
233
|
-
th, td {
|
234
|
-
text-align:left;
|
235
|
-
padding:5px 10px;
|
236
|
-
border-bottom:1px solid #aaa;
|
237
|
-
}
|
238
|
-
|
239
|
-
dt {
|
240
|
-
color:#222;
|
241
|
-
font-weight:700;
|
242
|
-
}
|
243
|
-
|
244
|
-
th {
|
245
|
-
color:#222;
|
246
|
-
}
|
247
|
-
|
248
|
-
small {
|
249
|
-
font-size:11px;
|
250
|
-
}
|
251
|
-
|
252
|
-
hr {
|
253
|
-
border:0;
|
254
|
-
background:#aaa;
|
255
|
-
height:1px;
|
256
|
-
margin:0 0 20px;
|
257
|
-
}
|
258
|
-
|
259
|
-
footer {
|
260
|
-
width:640px;
|
261
|
-
margin:0 auto;
|
262
|
-
padding:20px 0 0;
|
263
|
-
color:#ccc;
|
264
|
-
overflow:hidden;
|
265
|
-
|
266
|
-
a {
|
267
|
-
color:#fff;
|
268
|
-
font-weight:bold;
|
269
|
-
}
|
270
|
-
|
271
|
-
p {
|
272
|
-
float:left;
|
273
|
-
}
|
274
|
-
|
275
|
-
p + p {
|
276
|
-
float:right;
|
277
|
-
}
|
278
|
-
}
|
279
|
-
|
280
|
-
@media print, screen and (max-width: 740px) {
|
281
|
-
body {
|
282
|
-
padding:0;
|
283
|
-
}
|
284
|
-
|
285
|
-
.wrapper {
|
286
|
-
@include border-radius(0);
|
287
|
-
@include box-shadow(none);
|
288
|
-
width:100%;
|
289
|
-
}
|
290
|
-
|
291
|
-
footer {
|
292
|
-
@include border-radius(0);
|
293
|
-
padding:20px;
|
294
|
-
width:auto;
|
295
|
-
|
296
|
-
p {
|
297
|
-
float:none;
|
298
|
-
margin:0;
|
299
|
-
}
|
300
|
-
|
301
|
-
p + p {
|
302
|
-
float:none;
|
303
|
-
}
|
304
|
-
}
|
305
|
-
}
|
306
|
-
|
307
|
-
@media print, screen and (max-width:580px) {
|
308
|
-
header ul {
|
309
|
-
display:none;
|
310
|
-
}
|
311
|
-
|
312
|
-
header p.view {
|
313
|
-
display:block;
|
314
|
-
}
|
315
|
-
|
316
|
-
header p {
|
317
|
-
width:100%;
|
318
|
-
}
|
319
|
-
}
|
320
|
-
|
321
|
-
@media print {
|
322
|
-
header p.view a small:before {
|
323
|
-
content:'at http://github.com/';
|
324
|
-
}
|
325
|
-
}
|
data/lib/corundum/default_configuration/templates/doc_assembly/theme/stylesheets/pygment_trac.css
DELETED
@@ -1,60 +0,0 @@
|
|
1
|
-
.highlight .hll { background-color: #49483e }
|
2
|
-
.highlight { background: #3A3C42; color: #f8f8f2 }
|
3
|
-
.highlight .c { color: #75715e } /* Comment */
|
4
|
-
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
|
5
|
-
.highlight .k { color: #66d9ef } /* Keyword */
|
6
|
-
.highlight .l { color: #ae81ff } /* Literal */
|
7
|
-
.highlight .n { color: #f8f8f2 } /* Name */
|
8
|
-
.highlight .o { color: #f92672 } /* Operator */
|
9
|
-
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
10
|
-
.highlight .cm { color: #75715e } /* Comment.Multiline */
|
11
|
-
.highlight .cp { color: #75715e } /* Comment.Preproc */
|
12
|
-
.highlight .c1 { color: #75715e } /* Comment.Single */
|
13
|
-
.highlight .cs { color: #75715e } /* Comment.Special */
|
14
|
-
.highlight .ge { font-style: italic } /* Generic.Emph */
|
15
|
-
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
16
|
-
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
17
|
-
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
18
|
-
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
|
19
|
-
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
20
|
-
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
21
|
-
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
22
|
-
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
23
|
-
.highlight .m { color: #ae81ff } /* Literal.Number */
|
24
|
-
.highlight .s { color: #e6db74 } /* Literal.String */
|
25
|
-
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
26
|
-
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
27
|
-
.highlight .nc { color: #a6e22e } /* Name.Class */
|
28
|
-
.highlight .no { color: #66d9ef } /* Name.Constant */
|
29
|
-
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
30
|
-
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
31
|
-
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
32
|
-
.highlight .nf { color: #a6e22e } /* Name.Function */
|
33
|
-
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
34
|
-
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
35
|
-
.highlight .nx { color: #a6e22e } /* Name.Other */
|
36
|
-
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
37
|
-
.highlight .nt { color: #f92672 } /* Name.Tag */
|
38
|
-
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
39
|
-
.highlight .ow { color: #f92672 } /* Operator.Word */
|
40
|
-
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
41
|
-
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
42
|
-
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
43
|
-
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
44
|
-
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
45
|
-
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
46
|
-
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
47
|
-
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
48
|
-
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
49
|
-
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
50
|
-
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
51
|
-
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
52
|
-
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
53
|
-
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
54
|
-
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
|
55
|
-
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
56
|
-
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
57
|
-
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
58
|
-
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
59
|
-
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
60
|
-
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
@@ -1,363 +0,0 @@
|
|
1
|
-
@import url(https://fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700);
|
2
|
-
html {
|
3
|
-
background: #6C7989;
|
4
|
-
background: #6c7989 -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6c7989), color-stop(100%, #434b55)) fixed;
|
5
|
-
background: #6c7989 -webkit-linear-gradient(#6c7989, #434b55) fixed;
|
6
|
-
background: #6c7989 -moz-linear-gradient(#6c7989, #434b55) fixed;
|
7
|
-
background: #6c7989 -o-linear-gradient(#6c7989, #434b55) fixed;
|
8
|
-
background: #6c7989 -ms-linear-gradient(#6c7989, #434b55) fixed;
|
9
|
-
background: #6c7989 linear-gradient(#6c7989, #434b55) fixed;
|
10
|
-
}
|
11
|
-
|
12
|
-
body {
|
13
|
-
padding: 50px 0;
|
14
|
-
margin: 0;
|
15
|
-
font: 14px/1.5 Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
16
|
-
color: #555;
|
17
|
-
font-weight: 300;
|
18
|
-
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAeCAYAAABNChwpAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAAAUdEVYdENyZWF0aW9uIFRpbWUAMy82LzEygrTcTAAAAFRJREFUSIljfPDggZRf5RIGGNjUHsNATz6jXmSL1Kb2GLiAX+USBnrymRgGGDCORgFmoNAXjEbBaBSMRsFoFIxGwWgUjEbBaBSMRsFoFIxGwWgUAABYNujumib3wAAAAABJRU5ErkJggg==') fixed;
|
19
|
-
}
|
20
|
-
|
21
|
-
.wrapper {
|
22
|
-
width: 640px;
|
23
|
-
margin: 0 auto;
|
24
|
-
background: #DEDEDE;
|
25
|
-
-moz-border-radius: 8px;
|
26
|
-
-webkit-border-radius: 8px;
|
27
|
-
-o-border-radius: 8px;
|
28
|
-
-ms-border-radius: 8px;
|
29
|
-
-khtml-border-radius: 8px;
|
30
|
-
border-radius: 8px;
|
31
|
-
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 3px 10px;
|
32
|
-
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 3px 10px;
|
33
|
-
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 3px 10px;
|
34
|
-
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 3px 10px;
|
35
|
-
}
|
36
|
-
|
37
|
-
header, section, footer {
|
38
|
-
display: block;
|
39
|
-
}
|
40
|
-
|
41
|
-
a {
|
42
|
-
color: #069;
|
43
|
-
text-decoration: none;
|
44
|
-
}
|
45
|
-
|
46
|
-
p {
|
47
|
-
margin: 0 0 20px;
|
48
|
-
padding: 0;
|
49
|
-
}
|
50
|
-
|
51
|
-
strong {
|
52
|
-
color: #222;
|
53
|
-
font-weight: 700;
|
54
|
-
}
|
55
|
-
|
56
|
-
header {
|
57
|
-
-moz-border-radius: 8px 8px 0 0;
|
58
|
-
-webkit-border-radius: 8px 8px 0 0;
|
59
|
-
-o-border-radius: 8px 8px 0 0;
|
60
|
-
-ms-border-radius: 8px 8px 0 0;
|
61
|
-
-khtml-border-radius: 8px 8px 0 0;
|
62
|
-
border-radius: 8px 8px 0 0;
|
63
|
-
background: #C6EAFA;
|
64
|
-
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ddfbfc), color-stop(100%, #c6eafa));
|
65
|
-
background: -webkit-linear-gradient(#ddfbfc, #c6eafa);
|
66
|
-
background: -moz-linear-gradient(#ddfbfc, #c6eafa);
|
67
|
-
background: -o-linear-gradient(#ddfbfc, #c6eafa);
|
68
|
-
background: -ms-linear-gradient(#ddfbfc, #c6eafa);
|
69
|
-
background: linear-gradient(#ddfbfc, #c6eafa);
|
70
|
-
position: relative;
|
71
|
-
padding: 15px 20px;
|
72
|
-
border-bottom: 1px solid #B2D2E1;
|
73
|
-
}
|
74
|
-
header h1 {
|
75
|
-
margin: 0;
|
76
|
-
padding: 0;
|
77
|
-
font-size: 24px;
|
78
|
-
line-height: 1.2;
|
79
|
-
color: #069;
|
80
|
-
text-shadow: rgba(255, 255, 255, 0.9) 0 1px 0;
|
81
|
-
}
|
82
|
-
header.without-description h1 {
|
83
|
-
margin: 10px 0;
|
84
|
-
}
|
85
|
-
header p {
|
86
|
-
margin: 0;
|
87
|
-
color: #61778B;
|
88
|
-
width: 300px;
|
89
|
-
font-size: 13px;
|
90
|
-
}
|
91
|
-
header p.view {
|
92
|
-
display: none;
|
93
|
-
font-weight: 700;
|
94
|
-
text-shadow: rgba(255, 255, 255, 0.9) 0 1px 0;
|
95
|
-
-webkit-font-smoothing: antialiased;
|
96
|
-
}
|
97
|
-
header p.view a {
|
98
|
-
color: #06c;
|
99
|
-
}
|
100
|
-
header p.view small {
|
101
|
-
font-weight: 400;
|
102
|
-
}
|
103
|
-
header ul {
|
104
|
-
margin: 0;
|
105
|
-
padding: 0;
|
106
|
-
list-style: none;
|
107
|
-
position: absolute;
|
108
|
-
z-index: 1;
|
109
|
-
right: 20px;
|
110
|
-
top: 20px;
|
111
|
-
height: 38px;
|
112
|
-
padding: 1px 0;
|
113
|
-
background: #5198DF;
|
114
|
-
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #77b9fb), color-stop(100%, #3782cd));
|
115
|
-
background: -webkit-linear-gradient(#77b9fb, #3782cd);
|
116
|
-
background: -moz-linear-gradient(#77b9fb, #3782cd);
|
117
|
-
background: -o-linear-gradient(#77b9fb, #3782cd);
|
118
|
-
background: -ms-linear-gradient(#77b9fb, #3782cd);
|
119
|
-
background: linear-gradient(#77b9fb, #3782cd);
|
120
|
-
border-radius: 5px;
|
121
|
-
-moz-box-shadow: inset rgba(255, 255, 255, 0.45) 0 1px 0, inset rgba(0, 0, 0, 0.2) 0 -1px 0;
|
122
|
-
-webkit-box-shadow: inset rgba(255, 255, 255, 0.45) 0 1px 0, inset rgba(0, 0, 0, 0.2) 0 -1px 0;
|
123
|
-
-o-box-shadow: inset rgba(255, 255, 255, 0.45) 0 1px 0, inset rgba(0, 0, 0, 0.2) 0 -1px 0;
|
124
|
-
box-shadow: inset rgba(255, 255, 255, 0.45) 0 1px 0, inset rgba(0, 0, 0, 0.2) 0 -1px 0;
|
125
|
-
width: 240px;
|
126
|
-
}
|
127
|
-
header ul:before {
|
128
|
-
content: '';
|
129
|
-
position: absolute;
|
130
|
-
z-index: -1;
|
131
|
-
left: -5px;
|
132
|
-
top: -4px;
|
133
|
-
right: -5px;
|
134
|
-
bottom: -6px;
|
135
|
-
background: rgba(0, 0, 0, 0.1);
|
136
|
-
-moz-border-radius: 8px;
|
137
|
-
-webkit-border-radius: 8px;
|
138
|
-
-o-border-radius: 8px;
|
139
|
-
-ms-border-radius: 8px;
|
140
|
-
-khtml-border-radius: 8px;
|
141
|
-
border-radius: 8px;
|
142
|
-
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 0, inset rgba(255, 255, 255, 0.7) 0 -1px 0;
|
143
|
-
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 0, inset rgba(255, 255, 255, 0.7) 0 -1px 0;
|
144
|
-
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 0, inset rgba(255, 255, 255, 0.7) 0 -1px 0;
|
145
|
-
box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 0, inset rgba(255, 255, 255, 0.7) 0 -1px 0;
|
146
|
-
}
|
147
|
-
header ul li {
|
148
|
-
width: 79px;
|
149
|
-
float: left;
|
150
|
-
border-right: 1px solid #3A7CBE;
|
151
|
-
height: 38px;
|
152
|
-
}
|
153
|
-
header ul li + li {
|
154
|
-
width: 78px;
|
155
|
-
border-left: 1px solid #8BBEF3;
|
156
|
-
}
|
157
|
-
header ul li + li + li {
|
158
|
-
border-right: none;
|
159
|
-
width: 79px;
|
160
|
-
}
|
161
|
-
header ul a {
|
162
|
-
line-height: 1;
|
163
|
-
font-size: 11px;
|
164
|
-
color: #fff;
|
165
|
-
color: rgba(255, 255, 255, 0.8);
|
166
|
-
display: block;
|
167
|
-
text-align: center;
|
168
|
-
font-weight: 400;
|
169
|
-
padding-top: 6px;
|
170
|
-
height: 40px;
|
171
|
-
text-shadow: rgba(0, 0, 0, 0.4) 0 -1px 0;
|
172
|
-
}
|
173
|
-
header ul a strong {
|
174
|
-
font-size: 14px;
|
175
|
-
display: block;
|
176
|
-
color: #fff;
|
177
|
-
-webkit-font-smoothing: antialiased;
|
178
|
-
}
|
179
|
-
|
180
|
-
section {
|
181
|
-
padding: 15px 20px;
|
182
|
-
font-size: 15px;
|
183
|
-
border-top: 1px solid #fff;
|
184
|
-
background: -webkit-gradient(linear, 50% 0%, 50% 700, color-stop(0%, #fafafa), color-stop(100%, #dedede));
|
185
|
-
background: -webkit-linear-gradient(#fafafa, #dedede 700px);
|
186
|
-
background: -moz-linear-gradient(#fafafa, #dedede 700px);
|
187
|
-
background: -o-linear-gradient(#fafafa, #dedede 700px);
|
188
|
-
background: -ms-linear-gradient(#fafafa, #dedede 700px);
|
189
|
-
background: linear-gradient(#fafafa, #dedede 700px);
|
190
|
-
-moz-border-radius: 0 0 8px 8px;
|
191
|
-
-webkit-border-radius: 0 0 8px 8px;
|
192
|
-
-o-border-radius: 0 0 8px 8px;
|
193
|
-
-ms-border-radius: 0 0 8px 8px;
|
194
|
-
-khtml-border-radius: 0 0 8px 8px;
|
195
|
-
border-radius: 0 0 8px 8px;
|
196
|
-
position: relative;
|
197
|
-
}
|
198
|
-
|
199
|
-
h1, h2, h3, h4, h5, h6 {
|
200
|
-
color: #222;
|
201
|
-
padding: 0;
|
202
|
-
margin: 0 0 20px;
|
203
|
-
line-height: 1.2;
|
204
|
-
}
|
205
|
-
|
206
|
-
p, ul, ol, table, pre, dl {
|
207
|
-
margin: 0 0 20px;
|
208
|
-
}
|
209
|
-
|
210
|
-
h1, h2, h3 {
|
211
|
-
line-height: 1.1;
|
212
|
-
}
|
213
|
-
|
214
|
-
h1 {
|
215
|
-
font-size: 28px;
|
216
|
-
}
|
217
|
-
|
218
|
-
h2 {
|
219
|
-
color: #393939;
|
220
|
-
}
|
221
|
-
|
222
|
-
h3, h4, h5, h6 {
|
223
|
-
color: #494949;
|
224
|
-
}
|
225
|
-
|
226
|
-
blockquote {
|
227
|
-
margin: 0 -20px 20px;
|
228
|
-
padding: 15px 20px 1px 40px;
|
229
|
-
font-style: italic;
|
230
|
-
background: #ccc;
|
231
|
-
background: rgba(0, 0, 0, 0.06);
|
232
|
-
color: #222;
|
233
|
-
}
|
234
|
-
|
235
|
-
img {
|
236
|
-
max-width:100%;
|
237
|
-
}
|
238
|
-
|
239
|
-
code, pre {
|
240
|
-
font-family: Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal;
|
241
|
-
color: #333;
|
242
|
-
font-size: 12px;
|
243
|
-
}
|
244
|
-
|
245
|
-
pre {
|
246
|
-
padding: 20px;
|
247
|
-
background: #3A3C42;
|
248
|
-
color: #f8f8f2;
|
249
|
-
margin: 0 -20px 20px;
|
250
|
-
overflow-x:auto;
|
251
|
-
}
|
252
|
-
pre code {
|
253
|
-
color: #f8f8f2;
|
254
|
-
}
|
255
|
-
li pre {
|
256
|
-
margin-left: -60px;
|
257
|
-
padding-left: 60px;
|
258
|
-
}
|
259
|
-
|
260
|
-
table {
|
261
|
-
width: 100%;
|
262
|
-
border-collapse: collapse;
|
263
|
-
}
|
264
|
-
|
265
|
-
th, td {
|
266
|
-
text-align: left;
|
267
|
-
padding: 5px 10px;
|
268
|
-
border-bottom: 1px solid #aaa;
|
269
|
-
}
|
270
|
-
|
271
|
-
dt {
|
272
|
-
color: #222;
|
273
|
-
font-weight: 700;
|
274
|
-
}
|
275
|
-
|
276
|
-
th {
|
277
|
-
color: #222;
|
278
|
-
}
|
279
|
-
|
280
|
-
small {
|
281
|
-
font-size: 11px;
|
282
|
-
}
|
283
|
-
|
284
|
-
hr {
|
285
|
-
border: 0;
|
286
|
-
background: #aaa;
|
287
|
-
height: 1px;
|
288
|
-
margin: 0 0 20px;
|
289
|
-
}
|
290
|
-
|
291
|
-
footer {
|
292
|
-
width: 640px;
|
293
|
-
margin: 0 auto;
|
294
|
-
padding: 20px 0 0;
|
295
|
-
color: #ccc;
|
296
|
-
overflow: hidden;
|
297
|
-
}
|
298
|
-
footer a {
|
299
|
-
color: #fff;
|
300
|
-
font-weight: bold;
|
301
|
-
}
|
302
|
-
footer p {
|
303
|
-
float: left;
|
304
|
-
}
|
305
|
-
footer p + p {
|
306
|
-
float: right;
|
307
|
-
}
|
308
|
-
|
309
|
-
@media print, screen and (max-width: 740px) {
|
310
|
-
body {
|
311
|
-
padding: 0;
|
312
|
-
}
|
313
|
-
|
314
|
-
.wrapper {
|
315
|
-
-moz-border-radius: 0;
|
316
|
-
-webkit-border-radius: 0;
|
317
|
-
-o-border-radius: 0;
|
318
|
-
-ms-border-radius: 0;
|
319
|
-
-khtml-border-radius: 0;
|
320
|
-
border-radius: 0;
|
321
|
-
-moz-box-shadow: none;
|
322
|
-
-webkit-box-shadow: none;
|
323
|
-
-o-box-shadow: none;
|
324
|
-
box-shadow: none;
|
325
|
-
width: 100%;
|
326
|
-
}
|
327
|
-
|
328
|
-
footer {
|
329
|
-
-moz-border-radius: 0;
|
330
|
-
-webkit-border-radius: 0;
|
331
|
-
-o-border-radius: 0;
|
332
|
-
-ms-border-radius: 0;
|
333
|
-
-khtml-border-radius: 0;
|
334
|
-
border-radius: 0;
|
335
|
-
padding: 20px;
|
336
|
-
width: auto;
|
337
|
-
}
|
338
|
-
footer p {
|
339
|
-
float: none;
|
340
|
-
margin: 0;
|
341
|
-
}
|
342
|
-
footer p + p {
|
343
|
-
float: none;
|
344
|
-
}
|
345
|
-
}
|
346
|
-
@media print, screen and (max-width:580px) {
|
347
|
-
header ul {
|
348
|
-
display: none;
|
349
|
-
}
|
350
|
-
|
351
|
-
header p.view {
|
352
|
-
display: block;
|
353
|
-
}
|
354
|
-
|
355
|
-
header p {
|
356
|
-
width: 100%;
|
357
|
-
}
|
358
|
-
}
|
359
|
-
@media print {
|
360
|
-
header p.view a small:before {
|
361
|
-
content: 'at http://github.com/';
|
362
|
-
}
|
363
|
-
}
|