overkyll-jekyll-theme 0.8 → 0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,414 @@
1
+ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ /**
4
+ * 1. Set default font family to sans-serif.
5
+ * 2. Prevent iOS and IE text size adjust after device orientation change,
6
+ * without disabling user zoom.
7
+ */
8
+
9
+ html {
10
+ font-family: sans-serif; /* 1 */
11
+ -ms-text-size-adjust: 100%; /* 2 */
12
+ -webkit-text-size-adjust: 100%; /* 2 */
13
+ }
14
+
15
+ /**
16
+ * Remove default margin.
17
+ */
18
+
19
+ body {
20
+ margin: 0;
21
+ }
22
+
23
+ /* HTML5 display definitions
24
+ ========================================================================== */
25
+
26
+ /**
27
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
28
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11
29
+ * and Firefox.
30
+ * Correct `block` display not defined for `main` in IE 11.
31
+ */
32
+
33
+ article,
34
+ aside,
35
+ details,
36
+ figcaption,
37
+ figure,
38
+ footer,
39
+ header,
40
+ hgroup,
41
+ main,
42
+ menu,
43
+ nav,
44
+ section,
45
+ summary {
46
+ display: block;
47
+ }
48
+
49
+ /**
50
+ * 1. Correct `inline-block` display not defined in IE 8/9.
51
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
52
+ */
53
+
54
+ audio,
55
+ canvas,
56
+ progress,
57
+ video {
58
+ display: inline-block; /* 1 */
59
+ vertical-align: baseline; /* 2 */
60
+ }
61
+
62
+ /**
63
+ * Prevent modern browsers from displaying `audio` without controls.
64
+ * Remove excess height in iOS 5 devices.
65
+ */
66
+
67
+ audio:not([controls]) {
68
+ display: none;
69
+ height: 0;
70
+ }
71
+
72
+ /**
73
+ * Address `[hidden]` styling not present in IE 8/9/10.
74
+ * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
75
+ */
76
+
77
+ [hidden],
78
+ template {
79
+ display: none;
80
+ }
81
+
82
+ /* Links
83
+ ========================================================================== */
84
+
85
+ /**
86
+ * Remove the gray background color from active links in IE 10.
87
+ */
88
+
89
+ a {
90
+ background-color: transparent;
91
+ }
92
+
93
+ /**
94
+ * Improve readability of focused elements when they are also in an
95
+ * active/hover state.
96
+ */
97
+
98
+ a:active,
99
+ a:hover {
100
+ outline: 0;
101
+ }
102
+
103
+ /* Text-level semantics
104
+ ========================================================================== */
105
+
106
+ /**
107
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
108
+ */
109
+
110
+ abbr[title] {
111
+ border-bottom: 1px dotted;
112
+ }
113
+
114
+ /**
115
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
116
+ */
117
+
118
+ b,
119
+ strong {
120
+ font-weight: bold;
121
+ }
122
+
123
+ /**
124
+ * Address styling not present in Safari and Chrome.
125
+ */
126
+
127
+ dfn {
128
+ font-style: italic;
129
+ }
130
+
131
+ /**
132
+ * Address styling not present in IE 8/9.
133
+ */
134
+
135
+ mark {
136
+ background: #ff0;
137
+ color: #000;
138
+ }
139
+
140
+ /**
141
+ * Address inconsistent and variable font size in all browsers.
142
+ */
143
+
144
+ small {
145
+ font-size: 80%;
146
+ }
147
+
148
+ /**
149
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
150
+ */
151
+
152
+ sub,
153
+ sup {
154
+ font-size: 75%;
155
+ line-height: 0;
156
+ position: relative;
157
+ vertical-align: baseline;
158
+ }
159
+
160
+ sup {
161
+ top: -0.5em;
162
+ }
163
+
164
+ sub {
165
+ bottom: -0.25em;
166
+ }
167
+
168
+ /* Embedded content
169
+ ========================================================================== */
170
+
171
+ /**
172
+ * Remove border when inside `a` element in IE 8/9/10.
173
+ */
174
+
175
+ img {
176
+ border: 0;
177
+ }
178
+
179
+ /**
180
+ * Correct overflow not hidden in IE 9/10/11.
181
+ */
182
+
183
+ svg:not(:root) {
184
+ overflow: hidden;
185
+ }
186
+
187
+ /* Grouping content
188
+ ========================================================================== */
189
+
190
+ /**
191
+ * Address margin not present in IE 8/9 and Safari.
192
+ */
193
+
194
+ figure {
195
+ margin: 1em 40px;
196
+ }
197
+
198
+ /**
199
+ * Address differences between Firefox and other browsers.
200
+ */
201
+
202
+ hr {
203
+ box-sizing: content-box;
204
+ height: 0;
205
+ }
206
+
207
+ /**
208
+ * Contain overflow in all browsers.
209
+ */
210
+
211
+ pre {
212
+ overflow: auto;
213
+ }
214
+
215
+ /**
216
+ * Address odd `em`-unit font size rendering in all browsers.
217
+ */
218
+
219
+ code,
220
+ kbd,
221
+ pre,
222
+ samp {
223
+ font-family: monospace, monospace;
224
+ font-size: 1em;
225
+ }
226
+
227
+ /* Forms
228
+ ========================================================================== */
229
+
230
+ /**
231
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
232
+ * styling of `select`, unless a `border` property is set.
233
+ */
234
+
235
+ /**
236
+ * 1. Correct color not being inherited.
237
+ * Known issue: affects color of disabled elements.
238
+ * 2. Correct font properties not being inherited.
239
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
240
+ */
241
+
242
+ button,
243
+ input,
244
+ optgroup,
245
+ select,
246
+ textarea {
247
+ color: inherit; /* 1 */
248
+ font: inherit; /* 2 */
249
+ margin: 0; /* 3 */
250
+ }
251
+
252
+ /**
253
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
254
+ */
255
+
256
+ button {
257
+ overflow: visible;
258
+ }
259
+
260
+ /**
261
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
262
+ * All other form control elements do not inherit `text-transform` values.
263
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
264
+ * Correct `select` style inheritance in Firefox.
265
+ */
266
+
267
+ button,
268
+ select {
269
+ text-transform: none;
270
+ }
271
+
272
+ /**
273
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
274
+ * and `video` controls.
275
+ * 2. Correct inability to style clickable `input` types in iOS.
276
+ * 3. Improve usability and consistency of cursor style between image-type
277
+ * `input` and others.
278
+ */
279
+
280
+ button,
281
+ html input[type="button"], /* 1 */
282
+ input[type="reset"],
283
+ input[type="submit"] {
284
+ -webkit-appearance: button; /* 2 */
285
+ cursor: pointer; /* 3 */
286
+ }
287
+
288
+ /**
289
+ * Re-set default cursor for disabled elements.
290
+ */
291
+
292
+ button[disabled],
293
+ html input[disabled] {
294
+ cursor: default;
295
+ }
296
+
297
+ /**
298
+ * Remove inner padding and border in Firefox 4+.
299
+ */
300
+
301
+ button::-moz-focus-inner,
302
+ input::-moz-focus-inner {
303
+ border: 0;
304
+ padding: 0;
305
+ }
306
+
307
+ /**
308
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
309
+ * the UA stylesheet.
310
+ */
311
+
312
+ input {
313
+ line-height: normal;
314
+ }
315
+
316
+ /**
317
+ * It's recommended that you don't attempt to style these elements.
318
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
319
+ *
320
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
321
+ * 2. Remove excess padding in IE 8/9/10.
322
+ */
323
+
324
+ input[type="checkbox"],
325
+ input[type="radio"] {
326
+ box-sizing: border-box; /* 1 */
327
+ padding: 0; /* 2 */
328
+ }
329
+
330
+ /**
331
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
332
+ * `font-size` values of the `input`, it causes the cursor style of the
333
+ * decrement button to change from `default` to `text`.
334
+ */
335
+
336
+ input[type="number"]::-webkit-inner-spin-button,
337
+ input[type="number"]::-webkit-outer-spin-button {
338
+ height: auto;
339
+ }
340
+
341
+ /**
342
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
343
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
344
+ */
345
+
346
+ input[type="search"] {
347
+ -webkit-appearance: textfield; /* 1 */
348
+ box-sizing: content-box; /* 2 */
349
+ }
350
+
351
+ /**
352
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
353
+ * Safari (but not Chrome) clips the cancel button when the search input has
354
+ * padding (and `textfield` appearance).
355
+ */
356
+
357
+ input[type="search"]::-webkit-search-cancel-button,
358
+ input[type="search"]::-webkit-search-decoration {
359
+ -webkit-appearance: none;
360
+ }
361
+
362
+ /**
363
+ * Define consistent border, margin, and padding.
364
+ */
365
+
366
+ fieldset {
367
+ border: 1px solid #c0c0c0;
368
+ margin: 0 2px;
369
+ padding: 0.35em 0.625em 0.75em;
370
+ }
371
+
372
+ /**
373
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
374
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
375
+ */
376
+
377
+ legend {
378
+ border: 0; /* 1 */
379
+ padding: 0; /* 2 */
380
+ }
381
+
382
+ /**
383
+ * Remove default vertical scrollbar in IE 8/9/10/11.
384
+ */
385
+
386
+ textarea {
387
+ overflow: auto;
388
+ }
389
+
390
+ /**
391
+ * Don't inherit the `font-weight` (applied by a rule above).
392
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
393
+ */
394
+
395
+ optgroup {
396
+ font-weight: bold;
397
+ }
398
+
399
+ /* Tables
400
+ ========================================================================== */
401
+
402
+ /**
403
+ * Remove most spacing between table cells.
404
+ */
405
+
406
+ table {
407
+ border-collapse: collapse;
408
+ border-spacing: 0;
409
+ }
410
+
411
+ td,
412
+ th {
413
+ padding: 0;
414
+ }
@@ -0,0 +1,44 @@
1
+ ////
2
+ /// Colors
3
+ ////
4
+
5
+ // Better colors for development
6
+ //-------------------------------------
7
+
8
+ $gray: #495057;
9
+ $red: #f03e3e;
10
+ $pink: #d6336c;
11
+ $grape: #ae3ec9;
12
+ $violet: #7048e8;
13
+ $indigo: #4263eb;
14
+ $blue: #1c7cd6;
15
+ $cyan: #1098ad;
16
+ $teal: #0ca678;
17
+ $green: #37b24d;
18
+ $lime: #74b816;
19
+ $yellow: #f59f00;
20
+ $orange: #f76707;
21
+
22
+
23
+ // Site color
24
+ //-------------------------------------
25
+
26
+ // Choose color among https://yeun.github.io/open-color/
27
+
28
+ $color-primary: color(gray,7) !default;
29
+ $color-primary-light: color(gray,2) !default;
30
+ $color-primary-dark: color(gray,9) !default;
31
+
32
+ $color-secondary: color(red,7) !default;
33
+ $color-secondary-light: color(red,2) !default;
34
+ $color-secondary-dark: color(red,8) !default;
35
+
36
+ $color-grey: color(gray,7) !default;
37
+ $color-grey-light: color(gray,2) !default;
38
+ $color-grey-dark: color(gray,9) !default;
39
+
40
+ $title-color: #000 !default;
41
+ $title-link-color: #000 !default;
42
+ $text-color: #000 !default;
43
+ $link-color: #000 !default;
44
+ $background-color: #000 !default;