middleman-liaison 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +20 -0
- data/README.md +58 -0
- data/source/css/base.scss +13 -0
- data/source/css/bootstrap/_variables.scss +872 -0
- data/source/css/font-awesome/FontAwesome.otf +0 -0
- data/source/css/font-awesome/_animated.scss +34 -0
- data/source/css/font-awesome/_bordered-pulled.scss +25 -0
- data/source/css/font-awesome/_core.scss +12 -0
- data/source/css/font-awesome/_fixed-width.scss +6 -0
- data/source/css/font-awesome/_icons.scss +677 -0
- data/source/css/font-awesome/_larger.scss +13 -0
- data/source/css/font-awesome/_list.scss +19 -0
- data/source/css/font-awesome/_mixins.scss +26 -0
- data/source/css/font-awesome/_path.scss +15 -0
- data/source/css/font-awesome/_rotated-flipped.scss +20 -0
- data/source/css/font-awesome/_stacked.scss +20 -0
- data/source/css/font-awesome/_variables.scss +688 -0
- data/source/css/font-awesome/font-awesome.scss +17 -0
- data/source/css/font-awesome/fontawesome-webfont.eot +0 -0
- data/source/css/font-awesome/fontawesome-webfont.svg +640 -0
- data/source/css/font-awesome/fontawesome-webfont.ttf +0 -0
- data/source/css/font-awesome/fontawesome-webfont.woff +0 -0
- data/source/css/font-awesome/fontawesome-webfont.woff2 +0 -0
- data/source/css/fonts.scss +22 -0
- data/source/css/highlighting.scss.erb +4 -0
- data/source/css/markdown.scss +3 -0
- data/source/css/normalize.scss +375 -0
- data/source/css/octicons/LICENSE.txt +9 -0
- data/source/css/octicons/README.md +1 -0
- data/source/css/octicons/octicons-local.ttf +0 -0
- data/source/css/octicons/octicons.css +235 -0
- data/source/css/octicons/octicons.eot +0 -0
- data/source/css/octicons/octicons.svg +198 -0
- data/source/css/octicons/octicons.ttf +0 -0
- data/source/css/octicons/octicons.woff +0 -0
- data/source/css/octicons/octicons.zip +0 -0
- data/source/css/octicons/sprockets-octicons.scss +220 -0
- data/source/css/section.scss +3 -0
- data/source/css/theme.scss +1 -0
- data/source/css/theme/middleman/middleman.scss +68 -0
- data/source/docs/index.md +21 -0
- data/source/img/background.png +0 -0
- data/source/img/middleman.png +0 -0
- data/source/index.haml +2 -0
- data/source/js/all.js +1 -0
- data/source/js/bootstrap/bootstrap.js +2002 -0
- data/source/js/bootstrap/bootstrap.min.js +9 -0
- data/source/js/google-analytics.js +10 -0
- data/source/js/ie10-viewport-bug-workaround.js +22 -0
- data/source/layouts/_data.haml +6 -0
- data/source/layouts/_default.haml +22 -0
- data/source/layouts/_display.haml +23 -0
- data/source/layouts/_favicons.haml +4 -0
- data/source/layouts/_google-analytics.haml +3 -0
- data/source/layouts/_head.haml +24 -0
- data/source/layouts/_markdown.haml +5 -0
- data/source/layouts/_middleman.haml +7 -0
- data/source/layouts/_opengraph.haml +11 -0
- data/source/layouts/_section.haml +10 -0
- data/source/layouts/_tail.haml +14 -0
- data/source/layouts/docs.haml +5 -0
- data/source/layouts/layout.haml +12 -0
- metadata +238 -0
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,22 @@
|
|
1
|
+
/* FontAwesome */
|
2
|
+
@font-face {
|
3
|
+
font-family: FontAwesome;
|
4
|
+
src: font-url("font-awesome/FontAwesome.otf"),
|
5
|
+
font-url("font-awesome/fontawesome-webfont.eot") format('embedded-opentype'),
|
6
|
+
font-url("font-awesome/fontawesome-webfont.woff") format('woff'),
|
7
|
+
font-url("font-awesome/fontawesome-webfont.ttf") format('truetype'),
|
8
|
+
font-url("font-awesome/fontawesome-webfont.svg") format('svg'),
|
9
|
+
};
|
10
|
+
@import "font-awesome/font-awesome";
|
11
|
+
|
12
|
+
/* GitHub Octicons*/
|
13
|
+
@font-face {
|
14
|
+
font-family: 'octicons';
|
15
|
+
src: font-url('octicons/octicons.eot?#iefix') format('embedded-opentype'),
|
16
|
+
font-url('octicons/octicons.woff') format('woff'),
|
17
|
+
font-url('octicons/octicons.ttf') format('truetype'),
|
18
|
+
font-url('octicons/octicons.svg#octicons') format('svg');
|
19
|
+
font-weight: normal;
|
20
|
+
font-style: normal;
|
21
|
+
};
|
22
|
+
@import "octicons/sprockets-octicons";
|
@@ -0,0 +1,375 @@
|
|
1
|
+
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
|
2
|
+
|
3
|
+
/* ==========================================================================
|
4
|
+
HTML5 display definitions
|
5
|
+
========================================================================== */
|
6
|
+
|
7
|
+
/*
|
8
|
+
* Corrects `block` display not defined in IE 8/9.
|
9
|
+
*/
|
10
|
+
|
11
|
+
article,
|
12
|
+
aside,
|
13
|
+
details,
|
14
|
+
figcaption,
|
15
|
+
figure,
|
16
|
+
footer,
|
17
|
+
header,
|
18
|
+
hgroup,
|
19
|
+
nav,
|
20
|
+
section,
|
21
|
+
summary {
|
22
|
+
display: block;
|
23
|
+
}
|
24
|
+
|
25
|
+
/*
|
26
|
+
* Corrects `inline-block` display not defined in IE 8/9.
|
27
|
+
*/
|
28
|
+
|
29
|
+
audio,
|
30
|
+
canvas,
|
31
|
+
video {
|
32
|
+
display: inline-block;
|
33
|
+
}
|
34
|
+
|
35
|
+
/*
|
36
|
+
* Prevents modern browsers from displaying `audio` without controls.
|
37
|
+
* Remove excess height in iOS 5 devices.
|
38
|
+
*/
|
39
|
+
|
40
|
+
audio:not([controls]) {
|
41
|
+
display: none;
|
42
|
+
height: 0;
|
43
|
+
}
|
44
|
+
|
45
|
+
/*
|
46
|
+
* Addresses styling for `hidden` attribute not present in IE 8/9.
|
47
|
+
*/
|
48
|
+
|
49
|
+
[hidden] {
|
50
|
+
display: none;
|
51
|
+
}
|
52
|
+
|
53
|
+
/* ==========================================================================
|
54
|
+
Base
|
55
|
+
========================================================================== */
|
56
|
+
|
57
|
+
/*
|
58
|
+
* 1. Sets default font family to sans-serif.
|
59
|
+
* 2. Prevents iOS text size adjust after orientation change, without disabling
|
60
|
+
* user zoom.
|
61
|
+
*/
|
62
|
+
|
63
|
+
html {
|
64
|
+
font-family: sans-serif; /* 1 */
|
65
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
66
|
+
-ms-text-size-adjust: 100%; /* 2 */
|
67
|
+
}
|
68
|
+
|
69
|
+
/*
|
70
|
+
* Removes default margin.
|
71
|
+
*/
|
72
|
+
|
73
|
+
body {
|
74
|
+
margin: 0;
|
75
|
+
}
|
76
|
+
|
77
|
+
/* ==========================================================================
|
78
|
+
Links
|
79
|
+
========================================================================== */
|
80
|
+
|
81
|
+
/*
|
82
|
+
* Addresses `outline` inconsistency between Chrome and other browsers.
|
83
|
+
*/
|
84
|
+
|
85
|
+
a:focus {
|
86
|
+
outline: thin dotted;
|
87
|
+
}
|
88
|
+
|
89
|
+
/*
|
90
|
+
* Improves readability when focused and also mouse hovered in all browsers.
|
91
|
+
*/
|
92
|
+
|
93
|
+
a:active,
|
94
|
+
a:hover {
|
95
|
+
outline: 0;
|
96
|
+
}
|
97
|
+
|
98
|
+
/* ==========================================================================
|
99
|
+
Typography
|
100
|
+
========================================================================== */
|
101
|
+
|
102
|
+
/*
|
103
|
+
* Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
|
104
|
+
* Safari 5, and Chrome.
|
105
|
+
*/
|
106
|
+
|
107
|
+
h1 {
|
108
|
+
font-size: 2em;
|
109
|
+
}
|
110
|
+
|
111
|
+
/*
|
112
|
+
* Addresses styling not present in IE 8/9, Safari 5, and Chrome.
|
113
|
+
*/
|
114
|
+
|
115
|
+
abbr[title] {
|
116
|
+
border-bottom: 1px dotted;
|
117
|
+
}
|
118
|
+
|
119
|
+
/*
|
120
|
+
* Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
|
121
|
+
*/
|
122
|
+
|
123
|
+
b,
|
124
|
+
strong {
|
125
|
+
font-weight: bold;
|
126
|
+
}
|
127
|
+
|
128
|
+
/*
|
129
|
+
* Addresses styling not present in Safari 5 and Chrome.
|
130
|
+
*/
|
131
|
+
|
132
|
+
dfn {
|
133
|
+
font-style: italic;
|
134
|
+
}
|
135
|
+
|
136
|
+
/*
|
137
|
+
* Addresses styling not present in IE 8/9.
|
138
|
+
*/
|
139
|
+
|
140
|
+
mark {
|
141
|
+
background: #ff0;
|
142
|
+
color: #000;
|
143
|
+
}
|
144
|
+
|
145
|
+
|
146
|
+
/*
|
147
|
+
* Corrects font family set oddly in Safari 5 and Chrome.
|
148
|
+
*/
|
149
|
+
|
150
|
+
code,
|
151
|
+
kbd,
|
152
|
+
pre,
|
153
|
+
samp {
|
154
|
+
font-family: monospace, serif;
|
155
|
+
font-size: 1em;
|
156
|
+
}
|
157
|
+
|
158
|
+
/*
|
159
|
+
* Improves readability of pre-formatted text in all browsers.
|
160
|
+
*/
|
161
|
+
|
162
|
+
pre {
|
163
|
+
white-space: pre;
|
164
|
+
white-space: pre-wrap;
|
165
|
+
word-wrap: break-word;
|
166
|
+
}
|
167
|
+
|
168
|
+
/*
|
169
|
+
* Sets consistent quote types.
|
170
|
+
*/
|
171
|
+
|
172
|
+
q {
|
173
|
+
quotes: "\201C" "\201D" "\2018" "\2019";
|
174
|
+
}
|
175
|
+
|
176
|
+
/*
|
177
|
+
* Addresses inconsistent and variable font size in all browsers.
|
178
|
+
*/
|
179
|
+
|
180
|
+
small {
|
181
|
+
font-size: 80%;
|
182
|
+
}
|
183
|
+
|
184
|
+
/*
|
185
|
+
* Prevents `sub` and `sup` affecting `line-height` in all browsers.
|
186
|
+
*/
|
187
|
+
|
188
|
+
sub,
|
189
|
+
sup {
|
190
|
+
font-size: 75%;
|
191
|
+
line-height: 0;
|
192
|
+
position: relative;
|
193
|
+
vertical-align: baseline;
|
194
|
+
}
|
195
|
+
|
196
|
+
sup {
|
197
|
+
top: -0.5em;
|
198
|
+
}
|
199
|
+
|
200
|
+
sub {
|
201
|
+
bottom: -0.25em;
|
202
|
+
}
|
203
|
+
|
204
|
+
/* ==========================================================================
|
205
|
+
Embedded content
|
206
|
+
========================================================================== */
|
207
|
+
|
208
|
+
/*
|
209
|
+
* Removes border when inside `a` element in IE 8/9.
|
210
|
+
*/
|
211
|
+
|
212
|
+
img {
|
213
|
+
border: 0;
|
214
|
+
}
|
215
|
+
|
216
|
+
/*
|
217
|
+
* Corrects overflow displayed oddly in IE 9.
|
218
|
+
*/
|
219
|
+
|
220
|
+
svg:not(:root) {
|
221
|
+
overflow: hidden;
|
222
|
+
}
|
223
|
+
|
224
|
+
/* ==========================================================================
|
225
|
+
Figures
|
226
|
+
========================================================================== */
|
227
|
+
|
228
|
+
/*
|
229
|
+
* Addresses margin not present in IE 8/9 and Safari 5.
|
230
|
+
*/
|
231
|
+
|
232
|
+
figure {
|
233
|
+
margin: 0;
|
234
|
+
}
|
235
|
+
|
236
|
+
/* ==========================================================================
|
237
|
+
Forms
|
238
|
+
========================================================================== */
|
239
|
+
|
240
|
+
/*
|
241
|
+
* Define consistent border, margin, and padding.
|
242
|
+
*/
|
243
|
+
|
244
|
+
fieldset {
|
245
|
+
border: 1px solid #c0c0c0;
|
246
|
+
margin: 0 2px;
|
247
|
+
padding: 0.35em 0.625em 0.75em;
|
248
|
+
}
|
249
|
+
|
250
|
+
/*
|
251
|
+
* 1. Corrects color not being inherited in IE 8/9.
|
252
|
+
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
253
|
+
*/
|
254
|
+
|
255
|
+
legend {
|
256
|
+
border: 0; /* 1 */
|
257
|
+
padding: 0; /* 2 */
|
258
|
+
}
|
259
|
+
|
260
|
+
/*
|
261
|
+
* 1. Corrects font family not being inherited in all browsers.
|
262
|
+
* 2. Corrects font size not being inherited in all browsers.
|
263
|
+
* 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
|
264
|
+
*/
|
265
|
+
|
266
|
+
button,
|
267
|
+
input,
|
268
|
+
select,
|
269
|
+
textarea {
|
270
|
+
font-family: inherit; /* 1 */
|
271
|
+
font-size: 100%; /* 2 */
|
272
|
+
margin: 0; /* 3 */
|
273
|
+
}
|
274
|
+
|
275
|
+
/*
|
276
|
+
* Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
|
277
|
+
* the UA stylesheet.
|
278
|
+
*/
|
279
|
+
|
280
|
+
button,
|
281
|
+
input {
|
282
|
+
line-height: normal;
|
283
|
+
}
|
284
|
+
|
285
|
+
/*
|
286
|
+
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
287
|
+
* and `video` controls.
|
288
|
+
* 2. Corrects inability to style clickable `input` types in iOS.
|
289
|
+
* 3. Improves usability and consistency of cursor style between image-type
|
290
|
+
* `input` and others.
|
291
|
+
*/
|
292
|
+
|
293
|
+
button,
|
294
|
+
html input[type="button"], /* 1 */
|
295
|
+
input[type="reset"],
|
296
|
+
input[type="submit"] {
|
297
|
+
-webkit-appearance: button; /* 2 */
|
298
|
+
cursor: pointer; /* 3 */
|
299
|
+
}
|
300
|
+
|
301
|
+
/*
|
302
|
+
* Re-set default cursor for disabled elements.
|
303
|
+
*/
|
304
|
+
|
305
|
+
button[disabled],
|
306
|
+
input[disabled] {
|
307
|
+
cursor: default;
|
308
|
+
}
|
309
|
+
|
310
|
+
/*
|
311
|
+
* 1. Addresses box sizing set to `content-box` in IE 8/9.
|
312
|
+
* 2. Removes excess padding in IE 8/9.
|
313
|
+
*/
|
314
|
+
|
315
|
+
input[type="checkbox"],
|
316
|
+
input[type="radio"] {
|
317
|
+
box-sizing: border-box; /* 1 */
|
318
|
+
padding: 0; /* 2 */
|
319
|
+
}
|
320
|
+
|
321
|
+
/*
|
322
|
+
* 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
|
323
|
+
* 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
|
324
|
+
* (include `-moz` to future-proof).
|
325
|
+
*/
|
326
|
+
|
327
|
+
input[type="search"] {
|
328
|
+
-webkit-appearance: textfield; /* 1 */
|
329
|
+
-moz-box-sizing: content-box;
|
330
|
+
-webkit-box-sizing: content-box; /* 2 */
|
331
|
+
box-sizing: content-box;
|
332
|
+
}
|
333
|
+
|
334
|
+
/*
|
335
|
+
* Removes inner padding and search cancel button in Safari 5 and Chrome
|
336
|
+
* on OS X.
|
337
|
+
*/
|
338
|
+
|
339
|
+
input[type="search"]::-webkit-search-cancel-button,
|
340
|
+
input[type="search"]::-webkit-search-decoration {
|
341
|
+
-webkit-appearance: none;
|
342
|
+
}
|
343
|
+
|
344
|
+
/*
|
345
|
+
* Removes inner padding and border in Firefox 4+.
|
346
|
+
*/
|
347
|
+
|
348
|
+
button::-moz-focus-inner,
|
349
|
+
input::-moz-focus-inner {
|
350
|
+
border: 0;
|
351
|
+
padding: 0;
|
352
|
+
}
|
353
|
+
|
354
|
+
/*
|
355
|
+
* 1. Removes default vertical scrollbar in IE 8/9.
|
356
|
+
* 2. Improves readability and alignment in all browsers.
|
357
|
+
*/
|
358
|
+
|
359
|
+
textarea {
|
360
|
+
overflow: auto; /* 1 */
|
361
|
+
vertical-align: top; /* 2 */
|
362
|
+
}
|
363
|
+
|
364
|
+
/* ==========================================================================
|
365
|
+
Tables
|
366
|
+
========================================================================== */
|
367
|
+
|
368
|
+
/*
|
369
|
+
* Remove most spacing between table cells.
|
370
|
+
*/
|
371
|
+
|
372
|
+
table {
|
373
|
+
border-collapse: collapse;
|
374
|
+
border-spacing: 0;
|
375
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
(c) 2012-2014 GitHub
|
2
|
+
|
3
|
+
When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos)
|
4
|
+
|
5
|
+
Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL)
|
6
|
+
Applies to all font files
|
7
|
+
|
8
|
+
Code License: MIT (http://choosealicense.com/licenses/mit/)
|
9
|
+
Applies to all other files
|
@@ -0,0 +1 @@
|
|
1
|
+
If you intend to install Octicons locally, install `octicons-local.ttf`. It should appear as “github-octicons” in your font list. It is specially designed not to conflict with GitHub's web fonts.
|
Binary file
|
@@ -0,0 +1,235 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'octicons';
|
3
|
+
src: url('octicons.eot?#iefix') format('embedded-opentype'),
|
4
|
+
url('octicons.woff') format('woff'),
|
5
|
+
url('octicons.ttf') format('truetype'),
|
6
|
+
url('octicons.svg#octicons') format('svg');
|
7
|
+
font-weight: normal;
|
8
|
+
font-style: normal;
|
9
|
+
}
|
10
|
+
|
11
|
+
/*
|
12
|
+
|
13
|
+
.octicon is optimized for 16px.
|
14
|
+
.mega-octicon is optimized for 32px but can be used larger.
|
15
|
+
|
16
|
+
*/
|
17
|
+
.octicon, .mega-octicon {
|
18
|
+
font: normal normal normal 16px/1 octicons;
|
19
|
+
display: inline-block;
|
20
|
+
text-decoration: none;
|
21
|
+
text-rendering: auto;
|
22
|
+
-webkit-font-smoothing: antialiased;
|
23
|
+
-moz-osx-font-smoothing: grayscale;
|
24
|
+
-webkit-user-select: none;
|
25
|
+
-moz-user-select: none;
|
26
|
+
-ms-user-select: none;
|
27
|
+
user-select: none;
|
28
|
+
}
|
29
|
+
.mega-octicon { font-size: 32px; }
|
30
|
+
|
31
|
+
|
32
|
+
.octicon-alert:before { content: '\f02d'} /* */
|
33
|
+
.octicon-alignment-align:before { content: '\f08a'} /* */
|
34
|
+
.octicon-alignment-aligned-to:before { content: '\f08e'} /* */
|
35
|
+
.octicon-alignment-unalign:before { content: '\f08b'} /* */
|
36
|
+
.octicon-arrow-down:before { content: '\f03f'} /* */
|
37
|
+
.octicon-arrow-left:before { content: '\f040'} /* */
|
38
|
+
.octicon-arrow-right:before { content: '\f03e'} /* */
|
39
|
+
.octicon-arrow-small-down:before { content: '\f0a0'} /* */
|
40
|
+
.octicon-arrow-small-left:before { content: '\f0a1'} /* */
|
41
|
+
.octicon-arrow-small-right:before { content: '\f071'} /* */
|
42
|
+
.octicon-arrow-small-up:before { content: '\f09f'} /* */
|
43
|
+
.octicon-arrow-up:before { content: '\f03d'} /* */
|
44
|
+
.octicon-beer:before { content: '\f069'} /* */
|
45
|
+
.octicon-book:before { content: '\f007'} /* */
|
46
|
+
.octicon-bookmark:before { content: '\f07b'} /* */
|
47
|
+
.octicon-briefcase:before { content: '\f0d3'} /* */
|
48
|
+
.octicon-broadcast:before { content: '\f048'} /* */
|
49
|
+
.octicon-browser:before { content: '\f0c5'} /* */
|
50
|
+
.octicon-bug:before { content: '\f091'} /* */
|
51
|
+
.octicon-calendar:before { content: '\f068'} /* */
|
52
|
+
.octicon-check:before { content: '\f03a'} /* */
|
53
|
+
.octicon-checklist:before { content: '\f076'} /* */
|
54
|
+
.octicon-chevron-down:before { content: '\f0a3'} /* */
|
55
|
+
.octicon-chevron-left:before { content: '\f0a4'} /* */
|
56
|
+
.octicon-chevron-right:before { content: '\f078'} /* */
|
57
|
+
.octicon-chevron-up:before { content: '\f0a2'} /* */
|
58
|
+
.octicon-circle-slash:before { content: '\f084'} /* */
|
59
|
+
.octicon-circuit-board:before { content: '\f0d6'} /* */
|
60
|
+
.octicon-clippy:before { content: '\f035'} /* */
|
61
|
+
.octicon-clock:before { content: '\f046'} /* */
|
62
|
+
.octicon-cloud-download:before { content: '\f00b'} /* */
|
63
|
+
.octicon-cloud-upload:before { content: '\f00c'} /* */
|
64
|
+
.octicon-code:before { content: '\f05f'} /* */
|
65
|
+
.octicon-color-mode:before { content: '\f065'} /* */
|
66
|
+
.octicon-comment-add:before,
|
67
|
+
.octicon-comment:before { content: '\f02b'} /* */
|
68
|
+
.octicon-comment-discussion:before { content: '\f04f'} /* */
|
69
|
+
.octicon-credit-card:before { content: '\f045'} /* */
|
70
|
+
.octicon-dash:before { content: '\f0ca'} /* */
|
71
|
+
.octicon-dashboard:before { content: '\f07d'} /* */
|
72
|
+
.octicon-database:before { content: '\f096'} /* */
|
73
|
+
.octicon-device-camera:before { content: '\f056'} /* */
|
74
|
+
.octicon-device-camera-video:before { content: '\f057'} /* */
|
75
|
+
.octicon-device-desktop:before { content: '\f27c'} /* */
|
76
|
+
.octicon-device-mobile:before { content: '\f038'} /* */
|
77
|
+
.octicon-diff:before { content: '\f04d'} /* */
|
78
|
+
.octicon-diff-added:before { content: '\f06b'} /* */
|
79
|
+
.octicon-diff-ignored:before { content: '\f099'} /* */
|
80
|
+
.octicon-diff-modified:before { content: '\f06d'} /* */
|
81
|
+
.octicon-diff-removed:before { content: '\f06c'} /* */
|
82
|
+
.octicon-diff-renamed:before { content: '\f06e'} /* */
|
83
|
+
.octicon-ellipsis:before { content: '\f09a'} /* */
|
84
|
+
.octicon-eye-unwatch:before,
|
85
|
+
.octicon-eye-watch:before,
|
86
|
+
.octicon-eye:before { content: '\f04e'} /* */
|
87
|
+
.octicon-file-binary:before { content: '\f094'} /* */
|
88
|
+
.octicon-file-code:before { content: '\f010'} /* */
|
89
|
+
.octicon-file-directory:before { content: '\f016'} /* */
|
90
|
+
.octicon-file-media:before { content: '\f012'} /* */
|
91
|
+
.octicon-file-pdf:before { content: '\f014'} /* */
|
92
|
+
.octicon-file-submodule:before { content: '\f017'} /* */
|
93
|
+
.octicon-file-symlink-directory:before { content: '\f0b1'} /* */
|
94
|
+
.octicon-file-symlink-file:before { content: '\f0b0'} /* */
|
95
|
+
.octicon-file-text:before { content: '\f011'} /* */
|
96
|
+
.octicon-file-zip:before { content: '\f013'} /* */
|
97
|
+
.octicon-flame:before { content: '\f0d2'} /* */
|
98
|
+
.octicon-fold:before { content: '\f0cc'} /* */
|
99
|
+
.octicon-gear:before { content: '\f02f'} /* */
|
100
|
+
.octicon-gift:before { content: '\f042'} /* */
|
101
|
+
.octicon-gist:before { content: '\f00e'} /* */
|
102
|
+
.octicon-gist-secret:before { content: '\f08c'} /* */
|
103
|
+
.octicon-git-branch-create:before,
|
104
|
+
.octicon-git-branch-delete:before,
|
105
|
+
.octicon-git-branch:before { content: '\f020'} /* */
|
106
|
+
.octicon-git-commit:before { content: '\f01f'} /* */
|
107
|
+
.octicon-git-compare:before { content: '\f0ac'} /* */
|
108
|
+
.octicon-git-merge:before { content: '\f023'} /* */
|
109
|
+
.octicon-git-pull-request-abandoned:before,
|
110
|
+
.octicon-git-pull-request:before { content: '\f009'} /* */
|
111
|
+
.octicon-globe:before { content: '\f0b6'} /* */
|
112
|
+
.octicon-graph:before { content: '\f043'} /* */
|
113
|
+
.octicon-heart:before { content: '\2665'} /* ♥ */
|
114
|
+
.octicon-history:before { content: '\f07e'} /* */
|
115
|
+
.octicon-home:before { content: '\f08d'} /* */
|
116
|
+
.octicon-horizontal-rule:before { content: '\f070'} /* */
|
117
|
+
.octicon-hourglass:before { content: '\f09e'} /* */
|
118
|
+
.octicon-hubot:before { content: '\f09d'} /* */
|
119
|
+
.octicon-inbox:before { content: '\f0cf'} /* */
|
120
|
+
.octicon-info:before { content: '\f059'} /* */
|
121
|
+
.octicon-issue-closed:before { content: '\f028'} /* */
|
122
|
+
.octicon-issue-opened:before { content: '\f026'} /* */
|
123
|
+
.octicon-issue-reopened:before { content: '\f027'} /* */
|
124
|
+
.octicon-jersey:before { content: '\f019'} /* */
|
125
|
+
.octicon-jump-down:before { content: '\f072'} /* */
|
126
|
+
.octicon-jump-left:before { content: '\f0a5'} /* */
|
127
|
+
.octicon-jump-right:before { content: '\f0a6'} /* */
|
128
|
+
.octicon-jump-up:before { content: '\f073'} /* */
|
129
|
+
.octicon-key:before { content: '\f049'} /* */
|
130
|
+
.octicon-keyboard:before { content: '\f00d'} /* */
|
131
|
+
.octicon-law:before { content: '\f0d8'} /* */
|
132
|
+
.octicon-light-bulb:before { content: '\f000'} /* */
|
133
|
+
.octicon-link:before { content: '\f05c'} /* */
|
134
|
+
.octicon-link-external:before { content: '\f07f'} /* */
|
135
|
+
.octicon-list-ordered:before { content: '\f062'} /* */
|
136
|
+
.octicon-list-unordered:before { content: '\f061'} /* */
|
137
|
+
.octicon-location:before { content: '\f060'} /* */
|
138
|
+
.octicon-gist-private:before,
|
139
|
+
.octicon-mirror-private:before,
|
140
|
+
.octicon-git-fork-private:before,
|
141
|
+
.octicon-lock:before { content: '\f06a'} /* */
|
142
|
+
.octicon-logo-github:before { content: '\f092'} /* */
|
143
|
+
.octicon-mail:before { content: '\f03b'} /* */
|
144
|
+
.octicon-mail-read:before { content: '\f03c'} /* */
|
145
|
+
.octicon-mail-reply:before { content: '\f051'} /* */
|
146
|
+
.octicon-mark-github:before { content: '\f00a'} /* */
|
147
|
+
.octicon-markdown:before { content: '\f0c9'} /* */
|
148
|
+
.octicon-megaphone:before { content: '\f077'} /* */
|
149
|
+
.octicon-mention:before { content: '\f0be'} /* */
|
150
|
+
.octicon-microscope:before { content: '\f089'} /* */
|
151
|
+
.octicon-milestone:before { content: '\f075'} /* */
|
152
|
+
.octicon-mirror-public:before,
|
153
|
+
.octicon-mirror:before { content: '\f024'} /* */
|
154
|
+
.octicon-mortar-board:before { content: '\f0d7'} /* */
|
155
|
+
.octicon-move-down:before { content: '\f0a8'} /* */
|
156
|
+
.octicon-move-left:before { content: '\f074'} /* */
|
157
|
+
.octicon-move-right:before { content: '\f0a9'} /* */
|
158
|
+
.octicon-move-up:before { content: '\f0a7'} /* */
|
159
|
+
.octicon-mute:before { content: '\f080'} /* */
|
160
|
+
.octicon-no-newline:before { content: '\f09c'} /* */
|
161
|
+
.octicon-octoface:before { content: '\f008'} /* */
|
162
|
+
.octicon-organization:before { content: '\f037'} /* */
|
163
|
+
.octicon-package:before { content: '\f0c4'} /* */
|
164
|
+
.octicon-paintcan:before { content: '\f0d1'} /* */
|
165
|
+
.octicon-pencil:before { content: '\f058'} /* */
|
166
|
+
.octicon-person-add:before,
|
167
|
+
.octicon-person-follow:before,
|
168
|
+
.octicon-person:before { content: '\f018'} /* */
|
169
|
+
.octicon-pin:before { content: '\f041'} /* */
|
170
|
+
.octicon-playback-fast-forward:before { content: '\f0bd'} /* */
|
171
|
+
.octicon-playback-pause:before { content: '\f0bb'} /* */
|
172
|
+
.octicon-playback-play:before { content: '\f0bf'} /* */
|
173
|
+
.octicon-playback-rewind:before { content: '\f0bc'} /* */
|
174
|
+
.octicon-plug:before { content: '\f0d4'} /* */
|
175
|
+
.octicon-repo-create:before,
|
176
|
+
.octicon-gist-new:before,
|
177
|
+
.octicon-file-directory-create:before,
|
178
|
+
.octicon-file-add:before,
|
179
|
+
.octicon-plus:before { content: '\f05d'} /* */
|
180
|
+
.octicon-podium:before { content: '\f0af'} /* */
|
181
|
+
.octicon-primitive-dot:before { content: '\f052'} /* */
|
182
|
+
.octicon-primitive-square:before { content: '\f053'} /* */
|
183
|
+
.octicon-pulse:before { content: '\f085'} /* */
|
184
|
+
.octicon-puzzle:before { content: '\f0c0'} /* */
|
185
|
+
.octicon-question:before { content: '\f02c'} /* */
|
186
|
+
.octicon-quote:before { content: '\f063'} /* */
|
187
|
+
.octicon-radio-tower:before { content: '\f030'} /* */
|
188
|
+
.octicon-repo-delete:before,
|
189
|
+
.octicon-repo:before { content: '\f001'} /* */
|
190
|
+
.octicon-repo-clone:before { content: '\f04c'} /* */
|
191
|
+
.octicon-repo-force-push:before { content: '\f04a'} /* */
|
192
|
+
.octicon-gist-fork:before,
|
193
|
+
.octicon-repo-forked:before { content: '\f002'} /* */
|
194
|
+
.octicon-repo-pull:before { content: '\f006'} /* */
|
195
|
+
.octicon-repo-push:before { content: '\f005'} /* */
|
196
|
+
.octicon-rocket:before { content: '\f033'} /* */
|
197
|
+
.octicon-rss:before { content: '\f034'} /* */
|
198
|
+
.octicon-ruby:before { content: '\f047'} /* */
|
199
|
+
.octicon-screen-full:before { content: '\f066'} /* */
|
200
|
+
.octicon-screen-normal:before { content: '\f067'} /* */
|
201
|
+
.octicon-search-save:before,
|
202
|
+
.octicon-search:before { content: '\f02e'} /* */
|
203
|
+
.octicon-server:before { content: '\f097'} /* */
|
204
|
+
.octicon-settings:before { content: '\f07c'} /* */
|
205
|
+
.octicon-log-in:before,
|
206
|
+
.octicon-sign-in:before { content: '\f036'} /* */
|
207
|
+
.octicon-log-out:before,
|
208
|
+
.octicon-sign-out:before { content: '\f032'} /* */
|
209
|
+
.octicon-split:before { content: '\f0c6'} /* */
|
210
|
+
.octicon-squirrel:before { content: '\f0b2'} /* */
|
211
|
+
.octicon-star-add:before,
|
212
|
+
.octicon-star-delete:before,
|
213
|
+
.octicon-star:before { content: '\f02a'} /* */
|
214
|
+
.octicon-steps:before { content: '\f0c7'} /* */
|
215
|
+
.octicon-stop:before { content: '\f08f'} /* */
|
216
|
+
.octicon-repo-sync:before,
|
217
|
+
.octicon-sync:before { content: '\f087'} /* */
|
218
|
+
.octicon-tag-remove:before,
|
219
|
+
.octicon-tag-add:before,
|
220
|
+
.octicon-tag:before { content: '\f015'} /* */
|
221
|
+
.octicon-telescope:before { content: '\f088'} /* */
|
222
|
+
.octicon-terminal:before { content: '\f0c8'} /* */
|
223
|
+
.octicon-three-bars:before { content: '\f05e'} /* */
|
224
|
+
.octicon-tools:before { content: '\f031'} /* */
|
225
|
+
.octicon-trashcan:before { content: '\f0d0'} /* */
|
226
|
+
.octicon-triangle-down:before { content: '\f05b'} /* */
|
227
|
+
.octicon-triangle-left:before { content: '\f044'} /* */
|
228
|
+
.octicon-triangle-right:before { content: '\f05a'} /* */
|
229
|
+
.octicon-triangle-up:before { content: '\f0aa'} /* */
|
230
|
+
.octicon-unfold:before { content: '\f039'} /* */
|
231
|
+
.octicon-unmute:before { content: '\f0ba'} /* */
|
232
|
+
.octicon-versions:before { content: '\f064'} /* */
|
233
|
+
.octicon-remove-close:before,
|
234
|
+
.octicon-x:before { content: '\f081'} /* */
|
235
|
+
.octicon-zap:before { content: '\26A1'} /* ⚡ */
|