oneflow-jekyll 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.
Files changed (122) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.MD +7 -0
  3. data/README.md +29 -0
  4. data/_data/navigation.yml +18 -0
  5. data/_includes/editables/editables.html +15 -0
  6. data/_includes/figure +9 -0
  7. data/_includes/footer/custom.html +3 -0
  8. data/_includes/footer.html +27 -0
  9. data/_includes/gallery +35 -0
  10. data/_includes/head/custom.html +12 -0
  11. data/_includes/head.html +23 -0
  12. data/_includes/image-text-row +61 -0
  13. data/_includes/masthead.html +35 -0
  14. data/_includes/page__hero.html +46 -0
  15. data/_includes/popup.html +43 -0
  16. data/_includes/round-images +30 -0
  17. data/_includes/scripts.html +13 -0
  18. data/_includes/seo.html +158 -0
  19. data/_includes/video +24 -0
  20. data/_layouts/default.html +78 -0
  21. data/_layouts/page.html +13 -0
  22. data/_sass/oneflow/_animations.scss +21 -0
  23. data/_sass/oneflow/_base.scss +356 -0
  24. data/_sass/oneflow/_boxes.scss +46 -0
  25. data/_sass/oneflow/_buttons.scss +95 -0
  26. data/_sass/oneflow/_fonts.scss +18 -0
  27. data/_sass/oneflow/_footer.scss +121 -0
  28. data/_sass/oneflow/_masthead.scss +97 -0
  29. data/_sass/oneflow/_mixins.scss +92 -0
  30. data/_sass/oneflow/_navigation.scss +412 -0
  31. data/_sass/oneflow/_notices.scss +109 -0
  32. data/_sass/oneflow/_page.scss +287 -0
  33. data/_sass/oneflow/_print.scss +252 -0
  34. data/_sass/oneflow/_reset.scss +187 -0
  35. data/_sass/oneflow/_sections.scss +29 -0
  36. data/_sass/oneflow/_utilities.scss +307 -0
  37. data/_sass/oneflow/_variables.scss +140 -0
  38. data/_sass/oneflow/skins/_air.scss +23 -0
  39. data/_sass/oneflow/skins/_aqua.scss +34 -0
  40. data/_sass/oneflow/skins/_contrast.scss +52 -0
  41. data/_sass/oneflow/skins/_dark.scss +30 -0
  42. data/_sass/oneflow/skins/_default.scss +5 -0
  43. data/_sass/oneflow/skins/_dirt.scss +33 -0
  44. data/_sass/oneflow/skins/_mint.scss +24 -0
  45. data/_sass/oneflow/skins/_neon.scss +63 -0
  46. data/_sass/oneflow/skins/_plum.scss +70 -0
  47. data/_sass/oneflow/skins/_sunrise.scss +49 -0
  48. data/_sass/oneflow/vendor/breakpoint/_breakpoint.scss +114 -0
  49. data/_sass/oneflow/vendor/breakpoint/_context.scss +95 -0
  50. data/_sass/oneflow/vendor/breakpoint/_helpers.scss +151 -0
  51. data/_sass/oneflow/vendor/breakpoint/_legacy-settings.scss +50 -0
  52. data/_sass/oneflow/vendor/breakpoint/_no-query.scss +15 -0
  53. data/_sass/oneflow/vendor/breakpoint/_parsers.scss +215 -0
  54. data/_sass/oneflow/vendor/breakpoint/_respond-to.scss +82 -0
  55. data/_sass/oneflow/vendor/breakpoint/_settings.scss +71 -0
  56. data/_sass/oneflow/vendor/breakpoint/parsers/_double.scss +33 -0
  57. data/_sass/oneflow/vendor/breakpoint/parsers/_query.scss +82 -0
  58. data/_sass/oneflow/vendor/breakpoint/parsers/_resolution.scss +31 -0
  59. data/_sass/oneflow/vendor/breakpoint/parsers/_single.scss +26 -0
  60. data/_sass/oneflow/vendor/breakpoint/parsers/_triple.scss +36 -0
  61. data/_sass/oneflow/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
  62. data/_sass/oneflow/vendor/breakpoint/parsers/double/_default.scss +22 -0
  63. data/_sass/oneflow/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
  64. data/_sass/oneflow/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
  65. data/_sass/oneflow/vendor/breakpoint/parsers/single/_default.scss +13 -0
  66. data/_sass/oneflow/vendor/breakpoint/parsers/triple/_default.scss +18 -0
  67. data/_sass/oneflow/vendor/magnific-popup/_magnific-popup.scss +649 -0
  68. data/_sass/oneflow/vendor/magnific-popup/_settings.scss +46 -0
  69. data/_sass/oneflow/vendor/susy/_su.scss +4 -0
  70. data/_sass/oneflow/vendor/susy/_susy-prefix.scss +13 -0
  71. data/_sass/oneflow/vendor/susy/_susy.scss +5 -0
  72. data/_sass/oneflow/vendor/susy/plugins/_svg-grid.scss +5 -0
  73. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_prefix.scss +7 -0
  74. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -0
  75. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -0
  76. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -0
  77. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -0
  78. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -0
  79. data/_sass/oneflow/vendor/susy/susy/_api.scss +318 -0
  80. data/_sass/oneflow/vendor/susy/susy/_normalize.scss +261 -0
  81. data/_sass/oneflow/vendor/susy/susy/_parse.scss +163 -0
  82. data/_sass/oneflow/vendor/susy/susy/_settings.scss +329 -0
  83. data/_sass/oneflow/vendor/susy/susy/_su-math.scss +441 -0
  84. data/_sass/oneflow/vendor/susy/susy/_su-validate.scss +213 -0
  85. data/_sass/oneflow/vendor/susy/susy/_syntax-helpers.scss +191 -0
  86. data/_sass/oneflow/vendor/susy/susy/_unprefix.scss +56 -0
  87. data/_sass/oneflow/vendor/susy/susy/_utilities.scss +167 -0
  88. data/_sass/oneflow.scss +33 -0
  89. data/assets/css/all.min.css +9 -0
  90. data/assets/css/custom-styles.css +1 -0
  91. data/assets/css/main.scss +13 -0
  92. data/assets/fonts/great-vibes-v18-latin-regular.woff2 +0 -0
  93. data/assets/images/header.webp +0 -0
  94. data/assets/images/logo.webp +0 -0
  95. data/assets/images/sydney-2.webp +0 -0
  96. data/assets/images/sydney-3.webp +0 -0
  97. data/assets/images/sydney-4.webp +0 -0
  98. data/assets/images/sydney-5.webp +0 -0
  99. data/assets/images/sydney-6.webp +0 -0
  100. data/assets/js/_main.js +136 -0
  101. data/assets/js/lunr/lunr-en.js +73 -0
  102. data/assets/js/lunr/lunr-gr.js +526 -0
  103. data/assets/js/lunr/lunr-store.js +84 -0
  104. data/assets/js/lunr/lunr.js +3475 -0
  105. data/assets/js/lunr/lunr.min.js +6 -0
  106. data/assets/js/main.min.js +6 -0
  107. data/assets/js/plugins/gumshoe.js +484 -0
  108. data/assets/js/plugins/jquery.ba-throttle-debounce.js +252 -0
  109. data/assets/js/plugins/jquery.fitvids.js +82 -0
  110. data/assets/js/plugins/jquery.greedy-navigation.js +127 -0
  111. data/assets/js/plugins/jquery.magnific-popup.js +1860 -0
  112. data/assets/js/plugins/smooth-scroll.js +650 -0
  113. data/assets/js/vendor/jquery/jquery-3.6.0.js +10881 -0
  114. data/assets/webfonts/fa-brands-400.ttf +0 -0
  115. data/assets/webfonts/fa-brands-400.woff2 +0 -0
  116. data/assets/webfonts/fa-regular-400.ttf +0 -0
  117. data/assets/webfonts/fa-regular-400.woff2 +0 -0
  118. data/assets/webfonts/fa-solid-900.ttf +0 -0
  119. data/assets/webfonts/fa-solid-900.woff2 +0 -0
  120. data/assets/webfonts/fa-v4compatibility.ttf +0 -0
  121. data/assets/webfonts/fa-v4compatibility.woff2 +0 -0
  122. metadata +253 -0
@@ -0,0 +1,187 @@
1
+ /* ==========================================================================
2
+ STYLE RESETS
3
+ ========================================================================== */
4
+
5
+ * { box-sizing: border-box; }
6
+
7
+ html {
8
+ /* apply a natural box layout model to all elements */
9
+ box-sizing: border-box;
10
+ background-color: $background-color;
11
+ font-size: 16px;
12
+
13
+ @include breakpoint($medium) {
14
+ font-size: 18px;
15
+ }
16
+
17
+ @include breakpoint($large) {
18
+ font-size: 20px;
19
+ }
20
+
21
+ @include breakpoint($x-large) {
22
+ font-size: 22px;
23
+ }
24
+
25
+ -webkit-text-size-adjust: 100%;
26
+ -ms-text-size-adjust: 100%;
27
+ }
28
+
29
+ /* Remove margin */
30
+
31
+ body { margin: 0; }
32
+
33
+ /* Selected elements */
34
+
35
+ ::-moz-selection {
36
+ color: #fff;
37
+ background: #000;
38
+ }
39
+
40
+ ::selection {
41
+ color: #fff;
42
+ background: #000;
43
+ }
44
+
45
+ /* Display HTML5 elements in IE6-9 and FF3 */
46
+
47
+ article,
48
+ aside,
49
+ details,
50
+ figcaption,
51
+ figure,
52
+ footer,
53
+ header,
54
+ hgroup,
55
+ main,
56
+ nav,
57
+ section {
58
+ display: block;
59
+ }
60
+
61
+ /* Display block in IE6-9 and FF3 */
62
+
63
+ audio,
64
+ canvas,
65
+ video {
66
+ display: inline-block;
67
+ *display: inline;
68
+ *zoom: 1;
69
+ }
70
+
71
+ /* Prevents modern browsers from displaying 'audio' without controls */
72
+
73
+ audio:not([controls]) {
74
+ display: none;
75
+ }
76
+
77
+ a {
78
+ color: $link-color;
79
+ }
80
+
81
+ /* Apply focus state */
82
+
83
+ a:focus {
84
+ @extend %tab-focus;
85
+ }
86
+
87
+ /* Remove outline from links */
88
+
89
+ a:hover,
90
+ a:active {
91
+ outline: 0;
92
+ }
93
+
94
+ /* Prevent sub and sup affecting line-height in all browsers */
95
+
96
+ sub,
97
+ sup {
98
+ position: relative;
99
+ font-size: 75%;
100
+ line-height: 0;
101
+ vertical-align: baseline;
102
+ }
103
+
104
+ sup {
105
+ top: -0.5em;
106
+ }
107
+
108
+ sub {
109
+ bottom: -0.25em;
110
+ }
111
+
112
+ /* img border in anchor's and image quality */
113
+
114
+ img {
115
+ /* Responsive images (ensure images don't scale beyond their parents) */
116
+ max-width: 100%; /* part 1: Set a maximum relative to the parent*/
117
+ width: auto\9; /* IE7-8 need help adjusting responsive images*/
118
+ height: auto; /* part 2: Scale the height according to the width, otherwise you get stretching*/
119
+
120
+ vertical-align: middle;
121
+ border: 0;
122
+ -ms-interpolation-mode: bicubic;
123
+ }
124
+
125
+ /* Prevent max-width from affecting Google Maps */
126
+
127
+ #map_canvas img,
128
+ .google-maps img {
129
+ max-width: none;
130
+ }
131
+
132
+ /* Consistent form font size in all browsers, margin changes, misc */
133
+
134
+ button,
135
+ input,
136
+ select,
137
+ textarea {
138
+ margin: 0;
139
+ font-size: 100%;
140
+ vertical-align: middle;
141
+ }
142
+
143
+ button,
144
+ input {
145
+ *overflow: visible; /* inner spacing ie IE6/7*/
146
+ line-height: normal; /* FF3/4 have !important on line-height in UA stylesheet*/
147
+ }
148
+
149
+ button::-moz-focus-inner,
150
+ input::-moz-focus-inner { /* inner padding and border oddities in FF3/4*/
151
+ padding: 0;
152
+ border: 0;
153
+ }
154
+
155
+ button,
156
+ html input[type="button"], // avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls
157
+ input[type="reset"],
158
+ input[type="submit"] {
159
+ -webkit-appearance: button; /* corrects inability to style clickable `input` types in iOS*/
160
+ cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/
161
+ }
162
+
163
+ label,
164
+ select,
165
+ button,
166
+ input[type="button"],
167
+ input[type="reset"],
168
+ input[type="submit"],
169
+ input[type="radio"],
170
+ input[type="checkbox"] {
171
+ cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/
172
+ }
173
+
174
+ input[type="search"] { /* Appearance in Safari/Chrome*/
175
+ box-sizing: border-box;
176
+ -webkit-appearance: textfield;
177
+ }
178
+
179
+ input[type="search"]::-webkit-search-decoration,
180
+ input[type="search"]::-webkit-search-cancel-button {
181
+ -webkit-appearance: none; /* inner-padding issues in Chrome OSX, Safari 5*/
182
+ }
183
+
184
+ textarea {
185
+ overflow: auto; /* remove vertical scrollbar in IE6-9*/
186
+ vertical-align: top; /* readability and alignment cross-browser*/
187
+ }
@@ -0,0 +1,29 @@
1
+ .section-sep {
2
+ border: 4px solid;
3
+ border-image: linear-gradient(to right, $link-color, $primary-color, $link-color) 1;
4
+ width: 100vw;
5
+ position: relative;
6
+ left: 50%;
7
+ right: 50%;
8
+ transform: translateX(-50%);
9
+ z-index: 1;
10
+ }
11
+
12
+ section.site-section {
13
+ padding: 80px 5vw 20px 5vw;
14
+ width: 100vw;
15
+ margin-top: -22px;
16
+ margin-bottom: -22px;
17
+ position: relative;
18
+ left: 50%;
19
+ right: 50%;
20
+ transform: translateX(-50%);
21
+ }
22
+
23
+ section.first-section {
24
+ margin-top: -2em;
25
+ }
26
+
27
+ section.alternative-color {
28
+ background-color: mix($background-color, $primary-color, 50%);
29
+ }
@@ -0,0 +1,307 @@
1
+ /* ==========================================================================
2
+ UTILITY CLASSES
3
+ ========================================================================== */
4
+
5
+ /*
6
+ Visibility
7
+ ========================================================================== */
8
+
9
+ /* http://www.456bereastreet.com/archive/200711/screen_readers_sometimes_ignore_displaynone/ */
10
+
11
+ .hidden,
12
+ .is--hidden {
13
+ display: none;
14
+ visibility: hidden;
15
+ }
16
+
17
+ /* for preloading images */
18
+
19
+ .load {
20
+ display: none;
21
+ }
22
+
23
+ .transparent {
24
+ opacity: 0;
25
+ }
26
+
27
+ /* https://developer.yahoo.com/blogs/ydn/clip-hidden-content-better-accessibility-53456.html */
28
+
29
+ .visually-hidden,
30
+ .screen-reader-text,
31
+ .screen-reader-text span,
32
+ .screen-reader-shortcut {
33
+ position: absolute !important;
34
+ clip: rect(1px, 1px, 1px, 1px);
35
+ height: 1px !important;
36
+ width: 1px !important;
37
+ border: 0 !important;
38
+ overflow: hidden;
39
+ }
40
+
41
+ body:hover .visually-hidden a,
42
+ body:hover .visually-hidden input,
43
+ body:hover .visually-hidden button {
44
+ display: none !important;
45
+ }
46
+
47
+ /* screen readers */
48
+
49
+ .screen-reader-text:focus,
50
+ .screen-reader-shortcut:focus {
51
+ clip: auto !important;
52
+ height: auto !important;
53
+ width: auto !important;
54
+ display: block;
55
+ font-size: 1em;
56
+ font-weight: bold;
57
+ padding: 15px 23px 14px;
58
+ background: #fff;
59
+ z-index: 100000;
60
+ text-decoration: none;
61
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
62
+ }
63
+
64
+ /*
65
+ Alignment
66
+ ========================================================================== */
67
+
68
+ /* clearfix */
69
+
70
+ .cf {
71
+ clear: both;
72
+ }
73
+
74
+ .wrapper {
75
+ margin-left: auto;
76
+ margin-right: auto;
77
+ width: 100%;
78
+ }
79
+
80
+ /*
81
+ Navicons
82
+ ========================================================================== */
83
+
84
+ .navicon {
85
+ position: relative;
86
+ width: $navicon-width;
87
+ height: $navicon-height;
88
+ background: $primary-color;
89
+ margin: auto;
90
+ -webkit-transition: 0.3s;
91
+ transition: 0.3s;
92
+
93
+ &:before,
94
+ &:after {
95
+ content: "";
96
+ position: absolute;
97
+ left: 0;
98
+ width: $navicon-width;
99
+ height: $navicon-height;
100
+ background: $primary-color;
101
+ -webkit-transition: 0.3s;
102
+ transition: 0.3s;
103
+ }
104
+
105
+ &:before {
106
+ top: (-2 * $navicon-height);
107
+ }
108
+
109
+ &:after {
110
+ bottom: (-2 * $navicon-height);
111
+ }
112
+ }
113
+
114
+ .close .navicon {
115
+ /* hide the middle line*/
116
+ background: transparent;
117
+
118
+ /* overlay the lines by setting both their top values to 0*/
119
+ &:before,
120
+ &:after {
121
+ -webkit-transform-origin: 50% 50%;
122
+ -ms-transform-origin: 50% 50%;
123
+ transform-origin: 50% 50%;
124
+ top: 0;
125
+ width: $navicon-width;
126
+ }
127
+
128
+ /* rotate the lines to form the x shape*/
129
+ &:before {
130
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
131
+ transform: rotate3d(0, 0, 1, 45deg);
132
+ }
133
+ &:after {
134
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
135
+ transform: rotate3d(0, 0, 1, -45deg);
136
+ }
137
+ }
138
+
139
+ .greedy-nav__toggle {
140
+ &:before {
141
+ @supports (pointer-events: none) {
142
+ content: '';
143
+ position: fixed;
144
+ top: 0;
145
+ left: 0;
146
+ width: 100%;
147
+ height: 100%;
148
+ opacity: 0;
149
+ background-color: $background-color;
150
+ -webkit-transition: $global-transition;
151
+ transition: $global-transition;
152
+ pointer-events: none;
153
+ }
154
+ }
155
+
156
+ &.close {
157
+ &:before {
158
+ opacity: 0.9;
159
+ -webkit-transition: $global-transition;
160
+ transition: $global-transition;
161
+ pointer-events: auto;
162
+ }
163
+ }
164
+ }
165
+
166
+ .greedy-nav__toggle:hover {
167
+ .navicon,
168
+ .navicon:before,
169
+ .navicon:after {
170
+ background: mix(#000, $primary-color, 25%);
171
+ }
172
+
173
+ &.close {
174
+ .navicon {
175
+ background: transparent;
176
+ }
177
+ }
178
+ }
179
+
180
+ /*
181
+ Responsive Video Embed
182
+ ========================================================================== */
183
+
184
+ .responsive-video-container {
185
+ position: relative;
186
+ margin-bottom: 1em;
187
+ padding-bottom: 56.25%;
188
+ height: 0;
189
+ overflow: hidden;
190
+ max-width: 100%;
191
+
192
+ iframe,
193
+ object,
194
+ embed {
195
+ position: absolute;
196
+ top: 0;
197
+ left: 0;
198
+ width: 100%;
199
+ height: 100%;
200
+ }
201
+ }
202
+
203
+ // full screen video fixes
204
+ :-webkit-full-screen-ancestor {
205
+ .masthead,
206
+ .page__footer {
207
+ position: static;
208
+ }
209
+ }
210
+
211
+
212
+ /*
213
+ Rounded images
214
+ ========================================================================== */
215
+
216
+ .round-image-container {
217
+ display: flex;
218
+ justify-content: space-between;
219
+ margin-top: 20px;
220
+ flex-wrap: wrap;
221
+ }
222
+
223
+ .round-image-box-full {
224
+ width: 100%;
225
+ }
226
+
227
+ .round-image-box-half {
228
+ width: calc(50% - 20px);
229
+ }
230
+
231
+ .round-image-box-third {
232
+ width: calc(33.33% - 20px);
233
+ }
234
+
235
+ .round-image-box {
236
+ padding: 20px;
237
+ margin-bottom: 20px;
238
+ border: 1px solid $primary-color;
239
+ box-sizing: border-box;
240
+ text-align: center;
241
+
242
+ @media screen and (max-width: 768px) {
243
+ width: 100%;
244
+ margin-bottom: 20px;
245
+ }
246
+ }
247
+
248
+ .round-image {
249
+ width: 150px;
250
+ height: 150px;
251
+ border-radius: 50%;
252
+ margin: 0 auto 10px;
253
+ }
254
+
255
+ .round-image img {
256
+ width: 100%;
257
+ height: 100%;
258
+ object-fit: cover;
259
+ object-position: center;
260
+ border-radius: 50%;
261
+ }
262
+
263
+
264
+ /*
265
+ Image-Text-Rows
266
+ ========================================================================== */
267
+
268
+
269
+ .itr-container {
270
+ display: flex;
271
+ justify-content: center;
272
+ align-items: center;
273
+ text-align: center;
274
+ margin: 0 auto;
275
+ padding: 20px;
276
+ }
277
+
278
+ .itr-image-container {
279
+ margin-right: 20px;
280
+ margin-left: 20px;
281
+ }
282
+
283
+ .itr-text {
284
+ flex: 1;
285
+ }
286
+
287
+ .itr-image {
288
+ max-width: 100%;
289
+ }
290
+
291
+ .itr-text p {
292
+ margin: 0;
293
+ }
294
+
295
+ @media (max-width: 768px) {
296
+ .itr-container {
297
+ flex-direction: column;
298
+ }
299
+
300
+ .itr-image-container {
301
+ max-width: 80vw;
302
+ margin-right: 0;
303
+ margin-left: 0;
304
+ margin-bottom: 10px;
305
+ order: -1;
306
+ }
307
+ }
@@ -0,0 +1,140 @@
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, BlinkMacSystemFont, "Roboto", "Segoe UI",
18
+ "Helvetica Neue", "Lucida Grande", Arial, sans-serif !default;
19
+ $monospace: Monaco, Consolas, "Lucida Console", monospace !default;
20
+
21
+ /* sans serif typefaces */
22
+ $sans-serif-narrow: $sans-serif !default;
23
+ $helvetica: Helvetica, "Helvetica Neue", Arial, sans-serif !default;
24
+
25
+ /* serif typefaces */
26
+ $georgia: Georgia, serif !default;
27
+ $times: Times, serif !default;
28
+ $bodoni: "Bodoni MT", serif !default;
29
+ $calisto: "Calisto MT", serif !default;
30
+ $garamond: Garamond, serif !default;
31
+
32
+ $global-font-family: $sans-serif !default;
33
+ $header-font-family: $sans-serif !default;
34
+ $caption-font-family: $serif !default;
35
+
36
+ /* type scale */
37
+ $type-size-1: 2.441em !default; // ~39.056px
38
+ $type-size-2: 1.953em !default; // ~31.248px
39
+ $type-size-3: 1.563em !default; // ~25.008px
40
+ $type-size-4: 1.25em !default; // ~20px
41
+ $type-size-5: 1em !default; // ~16px
42
+ $type-size-6: 0.75em !default; // ~12px
43
+ $type-size-7: 0.6875em !default; // ~11px
44
+ $type-size-8: 0.625em !default; // ~10px
45
+
46
+ /* headline scale */
47
+ $h-size-1: 1.563em !default; // ~25.008px
48
+ $h-size-2: 1.25em !default; // ~20px
49
+ $h-size-3: 1.125em !default; // ~18px
50
+ $h-size-4: 1.0625em !default; // ~17px
51
+ $h-size-5: 1.03125em !default; // ~16.5px
52
+ $h-size-6: 1em !default; // ~16px
53
+
54
+ /*
55
+ Colors
56
+ ========================================================================== */
57
+
58
+ $gray: #7a8288 !default;
59
+ $dark-gray: mix(#000, $gray, 50%) !default;
60
+ $darker-gray: mix(#000, $gray, 60%) !default;
61
+ $light-gray: mix(#fff, $gray, 50%) !default;
62
+ $lighter-gray: mix(#fff, $gray, 90%) !default;
63
+
64
+ $background-color: #fff !default;
65
+ $code-background-color: #fafafa !default;
66
+ $code-background-color-dark: $light-gray !default;
67
+ $text-color: $dark-gray !default;
68
+ $muted-text-color: mix(#fff, $text-color, 20%) !default;
69
+ $border-color: $lighter-gray !default;
70
+ $form-background-color: $lighter-gray !default;
71
+ $footer-background-color: $lighter-gray !default;
72
+
73
+ $primary-color: #6f777d !default;
74
+ $success-color: #3fa63f !default;
75
+ $warning-color: #d67f05 !default;
76
+ $danger-color: #ee5f5b !default;
77
+ $info-color: #3b9cba !default;
78
+ $focus-color: $primary-color !default;
79
+ $active-color: mix(#fff, $primary-color, 80%) !default;
80
+
81
+ /* YIQ color contrast */
82
+ $yiq-contrasted-dark-default: $dark-gray !default;
83
+ $yiq-contrasted-light-default: #fff !default;
84
+ $yiq-contrasted-threshold: 175 !default;
85
+ $yiq-debug: false !default;
86
+
87
+ /* links */
88
+ $link-color: mix(#000, $info-color, 20%) !default;
89
+ $link-color-hover: mix(#000, $link-color, 25%) !default;
90
+ $link-color-visited: mix(#fff, $link-color, 15%) !default;
91
+ $masthead-link-color: $primary-color !default;
92
+ $masthead-link-color-hover: mix(#000, $primary-color, 25%) !default;
93
+ $navicon-link-color-hover: mix(#fff, $primary-color, 75%) !default;
94
+
95
+ /* notices */
96
+ $notice-background-mix: 80% !default;
97
+ $code-notice-background-mix: 90% !default;
98
+
99
+ /* syntax highlighting (base16) */
100
+ $base00: #263238 !default;
101
+ $base01: #2e3c43 !default;
102
+ $base02: #314549 !default;
103
+ $base03: #546e7a !default;
104
+ $base04: #b2ccd6 !default;
105
+ $base05: #eeffff !default;
106
+ $base06: #eeffff !default;
107
+ $base07: #ffffff !default;
108
+ $base08: #f07178 !default;
109
+ $base09: #f78c6c !default;
110
+ $base0a: #ffcb6b !default;
111
+ $base0b: #c3e88d !default;
112
+ $base0c: #89ddff !default;
113
+ $base0d: #82aaff !default;
114
+ $base0e: #c792ea !default;
115
+ $base0f: #ff5370 !default;
116
+
117
+ /*
118
+ Breakpoints
119
+ ========================================================================== */
120
+
121
+ $small: 600px !default;
122
+ $medium: 768px !default;
123
+ $medium-wide: 900px !default;
124
+ $large: 1024px !default;
125
+ $x-large: 1280px !default;
126
+ $max-width: $x-large !default;
127
+
128
+
129
+ /*
130
+ Other
131
+ ========================================================================== */
132
+
133
+ $border-radius: 4px !default;
134
+ $box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125) !default;
135
+ $nav-height: 2em !default;
136
+ $nav-toggle-height: 2rem !default;
137
+ $navicon-width: 1.5rem !default;
138
+ $navicon-height: 0.25rem !default;
139
+ $global-transition: all 0.2s ease-in-out !default;
140
+ $intro-transition: intro 0.3s both !default;
@@ -0,0 +1,23 @@
1
+ /* ==========================================================================
2
+ Air skin
3
+ ========================================================================== */
4
+
5
+ /* Colors */
6
+ $background-color: #eeeeee !default;
7
+ $text-color: #222831 !default;
8
+ $muted-text-color: #393e46 !default;
9
+ $primary-color: #0092ca !default;
10
+ $border-color: mix(#fff, #393e46, 75%) !default;
11
+ $footer-background-color: mix(#000, $background-color, 30%) !default;
12
+ $link-color: #393e46 !default;
13
+ $masthead-link-color: $text-color !default;
14
+ $masthead-link-color-hover: $text-color !default;
15
+ $navicon-link-color-hover: mix(#fff, $text-color, 80%) !default;
16
+
17
+ .page__footer {
18
+ color: #fff !important; // override
19
+ }
20
+
21
+ .page__footer-follow .social-icons .svg-inline--fa {
22
+ color: inherit;
23
+ }
@@ -0,0 +1,34 @@
1
+ /* ==========================================================================
2
+ Aqua skin
3
+ ========================================================================== */
4
+
5
+ /* Colors */
6
+ $gray : #1976d2 !default;
7
+ $dark-gray : mix(#000, $gray, 40%) !default;
8
+ $darker-gray : mix(#000, $gray, 60%) !default;
9
+ $light-gray : mix(#fff, $gray, 50%) !default;
10
+ $lighter-gray : mix(#fff, $gray, 90%) !default;
11
+
12
+ $body-color : #fff !default;
13
+ $background-color : #f0fff0 !default;
14
+ $code-background-color : $lighter-gray !default;
15
+ $code-background-color-dark : $light-gray !default;
16
+ $text-color : $dark-gray !default;
17
+ $border-color : $lighter-gray !default;
18
+
19
+ $primary-color : $gray !default;
20
+ $success-color : #27ae60 !default;
21
+ $warning-color : #e67e22 !default;
22
+ $danger-color : #c0392b !default;
23
+ $info-color : #03a9f4 !default;
24
+
25
+ /* links */
26
+ $link-color : #393e46 !default;
27
+ $link-color-hover : mix(#000, $link-color, 25%) !default;
28
+ $link-color-visited : mix(#fff, $link-color, 25%) !default;
29
+ $masthead-link-color : $primary-color !default;
30
+ $masthead-link-color-hover : mix(#000, $primary-color, 25%) !default;
31
+
32
+ /* notices */
33
+ $notice-background-mix: 90% !default;
34
+ $code-notice-background-mix: 95% !default;