minimal-mistakes-jekyll 4.5.1 → 4.5.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,146 +1,146 @@
1
- /* ==========================================================================
2
- Syntax highlighting
3
- ========================================================================== */
4
-
5
- div.highlighter-rouge,
6
- figure.highlight {
7
- position: relative;
8
- margin-bottom: 1em;
9
- font-family: $monospace;
10
- font-size: $type-size-6;
11
- line-height: 1.8;
12
- border: 1px solid $border-color;
13
- border-radius: $border-radius;
14
- background-color: $code-background-color;
15
- box-shadow: $box-shadow;
16
-
17
- &:before {
18
- position: absolute;
19
- top: 0;
20
- right: 0;
21
- padding: 0.5em;
22
- background-color: $lighter-gray;
23
- content: "\f121";
24
- font-family: "fontawesome" !important;
25
- line-height: 1;
26
- text-transform: none;
27
- speak: none;
28
- }
29
-
30
- .highlight {
31
- margin: 0;
32
- padding: 1em;
33
- }
34
- }
35
-
36
- figure.highlight {
37
- padding-left: 1em;
38
- padding-right: 1em;
39
- }
40
-
41
- .highlight table {
42
- font-size: 1em;
43
- border: 0;
44
-
45
- td {
46
- padding: 5px;
47
- border: 0;
48
-
49
- /* line numbers*/
50
- &.gutter {
51
- padding-right: 1em;
52
- color: $light-gray;
53
- }
54
- }
55
-
56
- pre {
57
- margin: 0;
58
- }
59
- }
60
-
61
- .highlight pre { width: 100%; }
62
-
63
- /*
64
- Solarized Light
65
- http://ethanschoonover.com/solarized
66
-
67
- SOLARIZED HEX ROLE
68
- --------- -------- ------------------------------------------
69
- base01 #586e75 body text / default code / primary content
70
- base1 #93a1a1 comments / secondary content
71
- base3 #fdf6e3 background
72
- orange #cb4b16 constants
73
- red #dc322f regex, special keywords
74
- blue #22b3eb reserved keywords
75
- cyan #2aa198 strings, numbers
76
- green #859900 operators, other keywords
77
- ========================================================================== */
78
-
79
- .highlight .c { color: #93a1a1 } /* Comment */
80
- .highlight .err { color: #586e75 } /* Error */
81
- .highlight .g { color: #586e75 } /* Generic */
82
- .highlight .k { color: #859900 } /* Keyword */
83
- .highlight .l { color: #586e75 } /* Literal */
84
- .highlight .n { color: #586e75 } /* Name */
85
- .highlight .o { color: #859900 } /* Operator */
86
- .highlight .x { color: #cb4b16 } /* Other */
87
- .highlight .p { color: #586e75 } /* Punctuation */
88
- .highlight .cm { color: #93a1a1 } /* Comment.Multiline */
89
- .highlight .cp { color: #859900 } /* Comment.Preproc */
90
- .highlight .c1 { color: #93a1a1 } /* Comment.Single */
91
- .highlight .cs { color: #859900 } /* Comment.Special */
92
- .highlight .gd { color: #2aa198 } /* Generic.Deleted */
93
- .highlight .ge { color: #586e75; font-style: italic } /* Generic.Emph */
94
- .highlight .gr { color: #dc322f } /* Generic.Error */
95
- .highlight .gh { color: #cb4b16 } /* Generic.Heading */
96
- .highlight .gi { color: #859900 } /* Generic.Inserted */
97
- .highlight .go { color: #586e75 } /* Generic.Output */
98
- .highlight .gp { color: #586e75 } /* Generic.Prompt */
99
- .highlight .gs { color: #586e75; font-weight: bold } /* Generic.Strong */
100
- .highlight .gu { color: #cb4b16 } /* Generic.Subheading */
101
- .highlight .gt { color: #586e75 } /* Generic.Traceback */
102
- .highlight .kc { color: #cb4b16 } /* Keyword.Constant */
103
- .highlight .kd { color: #22b3eb } /* Keyword.Declaration */
104
- .highlight .kn { color: #859900 } /* Keyword.Namespace */
105
- .highlight .kp { color: #859900 } /* Keyword.Pseudo */
106
- .highlight .kr { color: #22b3eb } /* Keyword.Reserved */
107
- .highlight .kt { color: #dc322f } /* Keyword.Type */
108
- .highlight .ld { color: #586e75 } /* Literal.Date */
109
- .highlight .m { color: #2aa198 } /* Literal.Number */
110
- .highlight .s { color: #2aa198 } /* Literal.String */
111
- .highlight .na { color: #586e75 } /* Name.Attribute */
112
- .highlight .nb { color: #B58900 } /* Name.Builtin */
113
- .highlight .nc { color: #22b3eb } /* Name.Class */
114
- .highlight .no { color: #cb4b16 } /* Name.Constant */
115
- .highlight .nd { color: #22b3eb } /* Name.Decorator */
116
- .highlight .ni { color: #cb4b16 } /* Name.Entity */
117
- .highlight .ne { color: #cb4b16 } /* Name.Exception */
118
- .highlight .nf { color: #22b3eb } /* Name.Function */
119
- .highlight .nl { color: #586e75 } /* Name.Label */
120
- .highlight .nn { color: #586e75 } /* Name.Namespace */
121
- .highlight .nx { color: #586e75 } /* Name.Other */
122
- .highlight .py { color: #586e75 } /* Name.Property */
123
- .highlight .nt { color: #22b3eb } /* Name.Tag */
124
- .highlight .nv { color: #22b3eb } /* Name.Variable */
125
- .highlight .ow { color: #859900 } /* Operator.Word */
126
- .highlight .w { color: #586e75 } /* Text.Whitespace */
127
- .highlight .mf { color: #2aa198 } /* Literal.Number.Float */
128
- .highlight .mh { color: #2aa198 } /* Literal.Number.Hex */
129
- .highlight .mi { color: #2aa198 } /* Literal.Number.Integer */
130
- .highlight .mo { color: #2aa198 } /* Literal.Number.Oct */
131
- .highlight .sb { color: #93a1a1 } /* Literal.String.Backtick */
132
- .highlight .sc { color: #2aa198 } /* Literal.String.Char */
133
- .highlight .sd { color: #586e75 } /* Literal.String.Doc */
134
- .highlight .s2 { color: #2aa198 } /* Literal.String.Double */
135
- .highlight .se { color: #cb4b16 } /* Literal.String.Escape */
136
- .highlight .sh { color: #586e75 } /* Literal.String.Heredoc */
137
- .highlight .si { color: #2aa198 } /* Literal.String.Interpol */
138
- .highlight .sx { color: #2aa198 } /* Literal.String.Other */
139
- .highlight .sr { color: #dc322f } /* Literal.String.Regex */
140
- .highlight .s1 { color: #2aa198 } /* Literal.String.Single */
141
- .highlight .ss { color: #2aa198 } /* Literal.String.Symbol */
142
- .highlight .bp { color: #22b3eb } /* Name.Builtin.Pseudo */
143
- .highlight .vc { color: #22b3eb } /* Name.Variable.Class */
144
- .highlight .vg { color: #22b3eb } /* Name.Variable.Global */
145
- .highlight .vi { color: #22b3eb } /* Name.Variable.Instance */
1
+ /* ==========================================================================
2
+ Syntax highlighting
3
+ ========================================================================== */
4
+
5
+ div.highlighter-rouge,
6
+ figure.highlight {
7
+ position: relative;
8
+ margin-bottom: 1em;
9
+ font-family: $monospace;
10
+ font-size: $type-size-6;
11
+ line-height: 1.8;
12
+ border: 1px solid $border-color;
13
+ border-radius: $border-radius;
14
+ background-color: $code-background-color;
15
+ box-shadow: $box-shadow;
16
+
17
+ &:before {
18
+ position: absolute;
19
+ top: 0;
20
+ right: 0;
21
+ padding: 0.5em;
22
+ background-color: $lighter-gray;
23
+ content: "\f121";
24
+ font-family: "fontawesome" !important;
25
+ line-height: 1;
26
+ text-transform: none;
27
+ speak: none;
28
+ }
29
+
30
+ .highlight {
31
+ margin: 0;
32
+ padding: 1em;
33
+ }
34
+ }
35
+
36
+ figure.highlight {
37
+ padding-left: 1em;
38
+ padding-right: 1em;
39
+ }
40
+
41
+ .highlight table {
42
+ font-size: 1em;
43
+ border: 0;
44
+
45
+ td {
46
+ padding: 5px;
47
+ border: 0;
48
+
49
+ /* line numbers*/
50
+ &.gutter {
51
+ padding-right: 1em;
52
+ color: $light-gray;
53
+ }
54
+ }
55
+
56
+ pre {
57
+ margin: 0;
58
+ }
59
+ }
60
+
61
+ .highlight pre { width: 100%; }
62
+
63
+ /*
64
+ Solarized Light
65
+ http://ethanschoonover.com/solarized
66
+
67
+ SOLARIZED HEX ROLE
68
+ --------- -------- ------------------------------------------
69
+ base01 #586e75 body text / default code / primary content
70
+ base1 #93a1a1 comments / secondary content
71
+ base3 #fdf6e3 background
72
+ orange #cb4b16 constants
73
+ red #dc322f regex, special keywords
74
+ blue #22b3eb reserved keywords
75
+ cyan #2aa198 strings, numbers
76
+ green #859900 operators, other keywords
77
+ ========================================================================== */
78
+
79
+ .highlight .c { color: #93a1a1 } /* Comment */
80
+ .highlight .err { color: #586e75 } /* Error */
81
+ .highlight .g { color: #586e75 } /* Generic */
82
+ .highlight .k { color: #859900 } /* Keyword */
83
+ .highlight .l { color: #586e75 } /* Literal */
84
+ .highlight .n { color: #586e75 } /* Name */
85
+ .highlight .o { color: #859900 } /* Operator */
86
+ .highlight .x { color: #cb4b16 } /* Other */
87
+ .highlight .p { color: #586e75 } /* Punctuation */
88
+ .highlight .cm { color: #93a1a1 } /* Comment.Multiline */
89
+ .highlight .cp { color: #859900 } /* Comment.Preproc */
90
+ .highlight .c1 { color: #93a1a1 } /* Comment.Single */
91
+ .highlight .cs { color: #859900 } /* Comment.Special */
92
+ .highlight .gd { color: #2aa198 } /* Generic.Deleted */
93
+ .highlight .ge { color: #586e75; font-style: italic } /* Generic.Emph */
94
+ .highlight .gr { color: #dc322f } /* Generic.Error */
95
+ .highlight .gh { color: #cb4b16 } /* Generic.Heading */
96
+ .highlight .gi { color: #859900 } /* Generic.Inserted */
97
+ .highlight .go { color: #586e75 } /* Generic.Output */
98
+ .highlight .gp { color: #586e75 } /* Generic.Prompt */
99
+ .highlight .gs { color: #586e75; font-weight: bold } /* Generic.Strong */
100
+ .highlight .gu { color: #cb4b16 } /* Generic.Subheading */
101
+ .highlight .gt { color: #586e75 } /* Generic.Traceback */
102
+ .highlight .kc { color: #cb4b16 } /* Keyword.Constant */
103
+ .highlight .kd { color: #22b3eb } /* Keyword.Declaration */
104
+ .highlight .kn { color: #859900 } /* Keyword.Namespace */
105
+ .highlight .kp { color: #859900 } /* Keyword.Pseudo */
106
+ .highlight .kr { color: #22b3eb } /* Keyword.Reserved */
107
+ .highlight .kt { color: #dc322f } /* Keyword.Type */
108
+ .highlight .ld { color: #586e75 } /* Literal.Date */
109
+ .highlight .m { color: #2aa198 } /* Literal.Number */
110
+ .highlight .s { color: #2aa198 } /* Literal.String */
111
+ .highlight .na { color: #586e75 } /* Name.Attribute */
112
+ .highlight .nb { color: #B58900 } /* Name.Builtin */
113
+ .highlight .nc { color: #22b3eb } /* Name.Class */
114
+ .highlight .no { color: #cb4b16 } /* Name.Constant */
115
+ .highlight .nd { color: #22b3eb } /* Name.Decorator */
116
+ .highlight .ni { color: #cb4b16 } /* Name.Entity */
117
+ .highlight .ne { color: #cb4b16 } /* Name.Exception */
118
+ .highlight .nf { color: #22b3eb } /* Name.Function */
119
+ .highlight .nl { color: #586e75 } /* Name.Label */
120
+ .highlight .nn { color: #586e75 } /* Name.Namespace */
121
+ .highlight .nx { color: #586e75 } /* Name.Other */
122
+ .highlight .py { color: #586e75 } /* Name.Property */
123
+ .highlight .nt { color: #22b3eb } /* Name.Tag */
124
+ .highlight .nv { color: #22b3eb } /* Name.Variable */
125
+ .highlight .ow { color: #859900 } /* Operator.Word */
126
+ .highlight .w { color: #586e75 } /* Text.Whitespace */
127
+ .highlight .mf { color: #2aa198 } /* Literal.Number.Float */
128
+ .highlight .mh { color: #2aa198 } /* Literal.Number.Hex */
129
+ .highlight .mi { color: #2aa198 } /* Literal.Number.Integer */
130
+ .highlight .mo { color: #2aa198 } /* Literal.Number.Oct */
131
+ .highlight .sb { color: #93a1a1 } /* Literal.String.Backtick */
132
+ .highlight .sc { color: #2aa198 } /* Literal.String.Char */
133
+ .highlight .sd { color: #586e75 } /* Literal.String.Doc */
134
+ .highlight .s2 { color: #2aa198 } /* Literal.String.Double */
135
+ .highlight .se { color: #cb4b16 } /* Literal.String.Escape */
136
+ .highlight .sh { color: #586e75 } /* Literal.String.Heredoc */
137
+ .highlight .si { color: #2aa198 } /* Literal.String.Interpol */
138
+ .highlight .sx { color: #2aa198 } /* Literal.String.Other */
139
+ .highlight .sr { color: #dc322f } /* Literal.String.Regex */
140
+ .highlight .s1 { color: #2aa198 } /* Literal.String.Single */
141
+ .highlight .ss { color: #2aa198 } /* Literal.String.Symbol */
142
+ .highlight .bp { color: #22b3eb } /* Name.Builtin.Pseudo */
143
+ .highlight .vc { color: #22b3eb } /* Name.Variable.Class */
144
+ .highlight .vg { color: #22b3eb } /* Name.Variable.Global */
145
+ .highlight .vi { color: #22b3eb } /* Name.Variable.Instance */
146
146
  .highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */
@@ -1,37 +1,37 @@
1
- /* ==========================================================================
2
- TABLES
3
- ========================================================================== */
4
-
5
- table {
6
- margin-bottom: 1em;
7
- width: 100%;
8
- font-family: $global-font-family;
9
- font-size: $type-size-6;
10
- border-collapse: collapse;
11
-
12
- & + table {
13
- margin-top: 1em;
14
- }
15
- }
16
-
17
- thead {
18
- background-color: $lighter-gray;
19
- border-bottom: 2px solid $light-gray;
20
- }
21
-
22
- th {
23
- padding: 0.5em;
24
- font-weight: bold;
25
- text-align: left;
26
- }
27
-
28
- td {
29
- padding: 0.5em;
30
- border-bottom: 1px solid $light-gray;
31
- }
32
-
33
- tr,
34
- td,
35
- th {
36
- vertical-align: middle;
1
+ /* ==========================================================================
2
+ TABLES
3
+ ========================================================================== */
4
+
5
+ table {
6
+ margin-bottom: 1em;
7
+ width: 100%;
8
+ font-family: $global-font-family;
9
+ font-size: $type-size-6;
10
+ border-collapse: collapse;
11
+
12
+ & + table {
13
+ margin-top: 1em;
14
+ }
15
+ }
16
+
17
+ thead {
18
+ background-color: $lighter-gray;
19
+ border-bottom: 2px solid $light-gray;
20
+ }
21
+
22
+ th {
23
+ padding: 0.5em;
24
+ font-weight: bold;
25
+ text-align: left;
26
+ }
27
+
28
+ td {
29
+ padding: 0.5em;
30
+ border-bottom: 1px solid $light-gray;
31
+ }
32
+
33
+ tr,
34
+ td,
35
+ th {
36
+ vertical-align: middle;
37
37
  }
@@ -1,130 +1,130 @@
1
- /* ==========================================================================
2
- Variables
3
- ========================================================================== */
4
-
5
- /*
6
- Typography
7
- ========================================================================== */
8
-
9
- $doc-font-size : 16 !default;
10
-
11
- /* paragraph indention */
12
- $paragraph-indent : false !default; // true, false (default)
13
- $indent-var : 1.3em !default;
14
-
15
- /* system typefaces */
16
- $serif : Georgia, Times, serif !default;
17
- $sans-serif : -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif !default;
18
- $monospace : Monaco, Consolas, "Lucida Console", monospace !default;
19
-
20
- /* sans serif typefaces */
21
- $sans-serif-narrow : $sans-serif !default;
22
- $helvetica : Helvetica, "Helvetica Neue", Arial, sans-serif !default;
23
-
24
- /* serif typefaces */
25
- $georgia : Georgia, serif !default;
26
- $times : Times, serif !default;
27
- $bodoni : "Bodoni MT", serif !default;
28
- $calisto : "Calisto MT", serif !default;
29
- $garamond : Garamond, serif !default;
30
-
31
- $global-font-family : $sans-serif !default;
32
- $header-font-family : $sans-serif !default;
33
- $caption-font-family : $serif !default;
34
-
35
- /* type scale */
36
- $type-size-1 : 2.441em !default; // ~39.056px
37
- $type-size-2 : 1.953em !default; // ~31.248px
38
- $type-size-3 : 1.563em !default; // ~25.008px
39
- $type-size-4 : 1.25em !default; // ~20px
40
- $type-size-5 : 1em !default; // ~16px
41
- $type-size-6 : 0.75em !default; // ~12px
42
- $type-size-7 : 0.6875em !default; // ~11px
43
- $type-size-8 : 0.625em !default; // ~10px
44
-
45
-
46
- /*
47
- Colors
48
- ========================================================================== */
49
-
50
- $gray : #7a8288 !default;
51
- $dark-gray : mix(#000, $gray, 40%) !default;
52
- $darker-gray : mix(#000, $gray, 60%) !default;
53
- $light-gray : mix(#fff, $gray, 50%) !default;
54
- $lighter-gray : mix(#fff, $gray, 90%) !default;
55
-
56
- $body-color : #fff !default;
57
- $background-color : #fff !default;
58
- $code-background-color : #fafafa !default;
59
- $code-background-color-dark : $light-gray !default;
60
- $text-color : $dark-gray !default;
61
- $border-color : $lighter-gray !default;
62
-
63
- $primary-color : #7a8288 !default;
64
- $success-color : #62c462 !default;
65
- $warning-color : #f89406 !default;
66
- $danger-color : #ee5f5b !default;
67
- $info-color : #52adc8 !default;
68
-
69
- /* brands */
70
- $behance-color : #1769FF !default;
71
- $bitbucket-color : #205081 !default;
72
- $dribbble-color : #ea4c89 !default;
73
- $facebook-color : #3b5998 !default;
74
- $flickr-color : #ff0084 !default;
75
- $foursquare-color : #0072b1 !default;
76
- $github-color : #171516 !default;
77
- $google-plus-color : #dd4b39 !default;
78
- $instagram-color : #517fa4 !default;
79
- $lastfm-color : #d51007 !default;
80
- $linkedin-color : #007bb6 !default;
81
- $pinterest-color : #cb2027 !default;
82
- $rss-color : #fa9b39 !default;
83
- $soundcloud-color : #ff3300 !default;
84
- $stackoverflow-color : #fe7a15 !default;
85
- $tumblr-color : #32506d !default;
86
- $twitter-color : #55acee !default;
87
- $vimeo-color : #1ab7ea !default;
88
- $vine-color : #00bf8f !default;
89
- $youtube-color : #bb0000 !default;
90
- $xing-color : #006567 !default;
91
-
92
-
93
- /* links */
94
- $link-color : $info-color !default;
95
- $link-color-hover : mix(#000, $link-color, 25%) !default;
96
- $link-color-visited : mix(#fff, $link-color, 25%) !default;
97
- $masthead-link-color : $primary-color !default;
98
- $masthead-link-color-hover : mix(#000, $primary-color, 25%) !default;
99
- $navicon-link-color-hover : mix(#fff, $primary-color, 75%) !default;
100
-
101
- /*
102
- Breakpoints
103
- ========================================================================== */
104
-
105
- $small : 600px !default;
106
- $medium : 768px !default;
107
- $medium-wide : 900px !default;
108
- $large : 1024px !default;
109
- $x-large : 1280px !default;
110
-
111
-
112
- /*
113
- Grid
114
- ========================================================================== */
115
-
116
- $right-sidebar-width-narrow : 200px !default;
117
- $right-sidebar-width : 300px !default;
118
- $right-sidebar-width-wide : 400px !default;
119
-
120
-
121
- /*
122
- Other
123
- ========================================================================== */
124
-
125
- $border-radius : 4px !default;
126
- $box-shadow : 0 1px 1px rgba(0, 0, 0, 0.125) !default;
127
- $navicon-width : 1.5rem !default;
128
- $navicon-height : 0.25rem !default;
129
- $global-transition : all 0.2s ease-in-out !default;
130
- $intro-transition : intro 0.3s both !default;
1
+ /* ==========================================================================
2
+ Variables
3
+ ========================================================================== */
4
+
5
+ /*
6
+ Typography
7
+ ========================================================================== */
8
+
9
+ $doc-font-size : 16 !default;
10
+
11
+ /* paragraph indention */
12
+ $paragraph-indent : false !default; // true, false (default)
13
+ $indent-var : 1.3em !default;
14
+
15
+ /* system typefaces */
16
+ $serif : Georgia, Times, serif !default;
17
+ $sans-serif : -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif !default;
18
+ $monospace : Monaco, Consolas, "Lucida Console", monospace !default;
19
+
20
+ /* sans serif typefaces */
21
+ $sans-serif-narrow : $sans-serif !default;
22
+ $helvetica : Helvetica, "Helvetica Neue", Arial, sans-serif !default;
23
+
24
+ /* serif typefaces */
25
+ $georgia : Georgia, serif !default;
26
+ $times : Times, serif !default;
27
+ $bodoni : "Bodoni MT", serif !default;
28
+ $calisto : "Calisto MT", serif !default;
29
+ $garamond : Garamond, serif !default;
30
+
31
+ $global-font-family : $sans-serif !default;
32
+ $header-font-family : $sans-serif !default;
33
+ $caption-font-family : $serif !default;
34
+
35
+ /* type scale */
36
+ $type-size-1 : 2.441em !default; // ~39.056px
37
+ $type-size-2 : 1.953em !default; // ~31.248px
38
+ $type-size-3 : 1.563em !default; // ~25.008px
39
+ $type-size-4 : 1.25em !default; // ~20px
40
+ $type-size-5 : 1em !default; // ~16px
41
+ $type-size-6 : 0.75em !default; // ~12px
42
+ $type-size-7 : 0.6875em !default; // ~11px
43
+ $type-size-8 : 0.625em !default; // ~10px
44
+
45
+
46
+ /*
47
+ Colors
48
+ ========================================================================== */
49
+
50
+ $gray : #7a8288 !default;
51
+ $dark-gray : mix(#000, $gray, 40%) !default;
52
+ $darker-gray : mix(#000, $gray, 60%) !default;
53
+ $light-gray : mix(#fff, $gray, 50%) !default;
54
+ $lighter-gray : mix(#fff, $gray, 90%) !default;
55
+
56
+ $body-color : #fff !default;
57
+ $background-color : #fff !default;
58
+ $code-background-color : #fafafa !default;
59
+ $code-background-color-dark : $light-gray !default;
60
+ $text-color : $dark-gray !default;
61
+ $border-color : $lighter-gray !default;
62
+
63
+ $primary-color : #7a8288 !default;
64
+ $success-color : #62c462 !default;
65
+ $warning-color : #f89406 !default;
66
+ $danger-color : #ee5f5b !default;
67
+ $info-color : #52adc8 !default;
68
+
69
+ /* brands */
70
+ $behance-color : #1769FF !default;
71
+ $bitbucket-color : #205081 !default;
72
+ $dribbble-color : #ea4c89 !default;
73
+ $facebook-color : #3b5998 !default;
74
+ $flickr-color : #ff0084 !default;
75
+ $foursquare-color : #0072b1 !default;
76
+ $github-color : #171516 !default;
77
+ $google-plus-color : #dd4b39 !default;
78
+ $instagram-color : #517fa4 !default;
79
+ $lastfm-color : #d51007 !default;
80
+ $linkedin-color : #007bb6 !default;
81
+ $pinterest-color : #cb2027 !default;
82
+ $rss-color : #fa9b39 !default;
83
+ $soundcloud-color : #ff3300 !default;
84
+ $stackoverflow-color : #fe7a15 !default;
85
+ $tumblr-color : #32506d !default;
86
+ $twitter-color : #55acee !default;
87
+ $vimeo-color : #1ab7ea !default;
88
+ $vine-color : #00bf8f !default;
89
+ $youtube-color : #bb0000 !default;
90
+ $xing-color : #006567 !default;
91
+
92
+
93
+ /* links */
94
+ $link-color : $info-color !default;
95
+ $link-color-hover : mix(#000, $link-color, 25%) !default;
96
+ $link-color-visited : mix(#fff, $link-color, 25%) !default;
97
+ $masthead-link-color : $primary-color !default;
98
+ $masthead-link-color-hover : mix(#000, $primary-color, 25%) !default;
99
+ $navicon-link-color-hover : mix(#fff, $primary-color, 75%) !default;
100
+
101
+ /*
102
+ Breakpoints
103
+ ========================================================================== */
104
+
105
+ $small : 600px !default;
106
+ $medium : 768px !default;
107
+ $medium-wide : 900px !default;
108
+ $large : 1024px !default;
109
+ $x-large : 1280px !default;
110
+
111
+
112
+ /*
113
+ Grid
114
+ ========================================================================== */
115
+
116
+ $right-sidebar-width-narrow : 200px !default;
117
+ $right-sidebar-width : 300px !default;
118
+ $right-sidebar-width-wide : 400px !default;
119
+
120
+
121
+ /*
122
+ Other
123
+ ========================================================================== */
124
+
125
+ $border-radius : 4px !default;
126
+ $box-shadow : 0 1px 1px rgba(0, 0, 0, 0.125) !default;
127
+ $navicon-width : 1.5rem !default;
128
+ $navicon-height : 0.25rem !default;
129
+ $global-transition : all 0.2s ease-in-out !default;
130
+ $intro-transition : intro 0.3s both !default;