forked from aweekj/kiko-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_variables.scss
86 lines (65 loc) · 1.83 KB
/
_variables.scss
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
//
// VARIABLES
//
// Colors
$blue: #4183C4;
// Grays
$black: #000;
$darkerGray: #222;
$darkGray: #333;
$gray: #666;
$lightGray: #eee;
$white: #fff;
// Font stacks
$helvetica: Helvetica, Arial, sans-serif;
$helveticaNeue: "Helvetica Neue", Helvetica, Arial, sans-serif;
$georgia: Georgia, serif;
// Fonts
$base-font: 'Spoqa Han Sans', 'Source Sans Pro', 'Apple SD Gothic Neo', 'Nanum Barun Gothic', 'Nanum Gothic', 'Verdana', 'Arial', 'Dotum', sans-serif;
$code-font: 'Menlo', 'Courier New', 'Monaco', 'Spoqa Han Sans', monospace;
// Font sizes
$base-font-size: 18px;
$small-font-size: 14px;
// Colors
$base-color: $oc-gray-8;
$base-lighten-color: $oc-gray-6;
$text-color: $base-color;
$link-color: $oc-blue-8;
$divider-color: $oc-gray-1;
$table-border-color: $oc-gray-2;
$table-background-color: $oc-gray-1;
$blockquote-color: $base-lighten-color;
$blockquote-border-color: $oc-gray-3;
$footnote-link-border-color: $oc-gray-1;
$footnote-link-background-over-color: $oc-gray-1;
$selection-color: $oc-black;
$selection-background-color: $oc-gray-1;
$pagination-color: $oc-gray-6;
$pagination-over-color: $oc-gray-7;
$tag-index-label-color: $base-color;
$tag-index-label-background-color: $oc-gray-2;
$tag-index-count-background-color: $oc-gray-3;
$footer-border-color: $oc-gray-2;
$footer-background-color: $oc-gray-1;
// List
$li-bottom-space: 0.4em;
$li-bullets-width: 1.4em;
$li-line-height: 1.55;
$ul-bullets-font: inherit;
$ul-bullets-font-size: 1.4em;
$ul-bullets-font-line-height: 1.2;
$ul-bullets-right-space: .3em;
$ol-bullets-font: inherit;
$ol-bullets-font-size: 1em;
$ol-bullets-font-line-height: inherit;
$ol-bullets-right-space: .3em;
$li-child-size-ratio: 0.95;
$dt-width: 180px;
$dt-dd-space: 20px;
$dd-position: $dt-width+$dt-dd-space;
// Mobile breakpoints
@mixin mobile {
@media screen and (max-width: 640px) {
@content;
}
}