swiftfire-jekyll-theme 0.2.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 (138) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +23 -0
  3. data/README.md +107 -0
  4. data/_data/cblocks.yml +31 -0
  5. data/_data/setup.yml +135 -0
  6. data/_data/text-for.yml +53 -0
  7. data/_includes/account-menus.html +82 -0
  8. data/_includes/banner-area.html +57 -0
  9. data/_includes/banner-icon.html +23 -0
  10. data/_includes/banner-title-area.html +30 -0
  11. data/_includes/cblock-row.html +18 -0
  12. data/_includes/cblock.html +20 -0
  13. data/_includes/disqus-comments.html +39 -0
  14. data/_includes/footer.html +16 -0
  15. data/_includes/google-analytics.html +21 -0
  16. data/_includes/head.html +74 -0
  17. data/_includes/menubar-icon.html +23 -0
  18. data/_includes/menubar.html +487 -0
  19. data/_includes/secondary-column.html +37 -0
  20. data/_includes/tertiary-column.html +8 -0
  21. data/_includes/vertical-menu.html +378 -0
  22. data/_includes/widgets/browser-info.html +16 -0
  23. data/_includes/widgets/categories.html +32 -0
  24. data/_includes/widgets/cookie-consent.html +21 -0
  25. data/_includes/widgets/older-posts.html +71 -0
  26. data/_includes/widgets/recent-posts.html +24 -0
  27. data/_includes/widgets/social-media-res/icon-github.html +7 -0
  28. data/_includes/widgets/social-media-res/icon-github.svg +1 -0
  29. data/_includes/widgets/social-media-res/icon-twitter.html +7 -0
  30. data/_includes/widgets/social-media-res/icon-twitter.svg +1 -0
  31. data/_includes/widgets/social-media.html +29 -0
  32. data/_includes/widgets/subscribe.html +18 -0
  33. data/_includes/widgets/youtube-player.html +38 -0
  34. data/_layouts/banner-layout.html +1 -0
  35. data/_layouts/category-page.html +51 -0
  36. data/_layouts/content-blocks.html +6 -0
  37. data/_layouts/default.html +152 -0
  38. data/_layouts/home.html +22 -0
  39. data/_layouts/page.html +30 -0
  40. data/_layouts/post.html +20 -0
  41. data/_sass/classic-jekyll-theme.scss +1178 -0
  42. data/_sass/classic/_banner-area.scss +552 -0
  43. data/_sass/classic/_body.scss +15 -0
  44. data/_sass/classic/_columns.scss +122 -0
  45. data/_sass/classic/_custom.scss +138 -0
  46. data/_sass/classic/_footer.scss +31 -0
  47. data/_sass/classic/_menubar.scss +530 -0
  48. data/_sass/classic/_normalize-override.scss +22 -0
  49. data/_sass/classic/_normalize.scss +447 -0
  50. data/_sass/classic/_page.scss +12 -0
  51. data/_sass/classic/_post.scss +10 -0
  52. data/_sass/classic/_swiftfire.scss +54 -0
  53. data/_sass/classic/_syntax-highlighting.scss +71 -0
  54. data/_sass/classic/_theme-internal.scss +37 -0
  55. data/_sass/classic/_theme-library.scss +85 -0
  56. data/_sass/classic/_vertical-menu.scss +252 -0
  57. data/_sass/classic/_widgets.scss +88 -0
  58. data/assets/img/banner-area-layout.png +0 -0
  59. data/assets/img/cog-wheels-120x68.png +0 -0
  60. data/assets/img/cog-wheels-240x135.png +0 -0
  61. data/assets/img/cog-wheels-30x17.png +0 -0
  62. data/assets/img/cog-wheels-60x43.png +0 -0
  63. data/assets/img/column-panel-layout.png +0 -0
  64. data/assets/img/test-pattern-110x83.png +0 -0
  65. data/assets/img/test-pattern-1280x800.png +0 -0
  66. data/assets/img/test-pattern-220x165.png +0 -0
  67. data/assets/img/test-pattern-55x42.png +0 -0
  68. data/assets/img/test-pattern-640x400.png +0 -0
  69. data/assets/img/top-level-layout.png +0 -0
  70. data/assets/js/cookieconsent.min.js +1 -0
  71. data/assets/main.scss +9 -0
  72. data/assets/templates/comment-section.sf.html +137 -0
  73. data/assets/templates/email-verification-text.sf.html +6 -0
  74. data/assets/templates/request-new-password-text.sf.txt +7 -0
  75. data/icons/android-chrome-192x192.png +0 -0
  76. data/icons/apple-touch-icon.png +0 -0
  77. data/icons/browserconfig.xml +9 -0
  78. data/icons/favicon-16x16.png +0 -0
  79. data/icons/favicon-32x32.png +0 -0
  80. data/icons/favicon.ico +0 -0
  81. data/icons/manifest.json +13 -0
  82. data/icons/mstile-150x150.png +0 -0
  83. data/icons/safari-pinned-tab.svg +14 -0
  84. data/pages/about/about.md +15 -0
  85. data/pages/account/comment-edit.sf.md +60 -0
  86. data/pages/account/comment-review.sf.md +80 -0
  87. data/pages/account/email-verification-failed.sf.md +11 -0
  88. data/pages/account/email-verification-success.sf.md +7 -0
  89. data/pages/account/error.sf.md +13 -0
  90. data/pages/account/forgot-password-continue.sf.md +9 -0
  91. data/pages/account/forgot-password.sf.md +25 -0
  92. data/pages/account/login.sf.md +19 -0
  93. data/pages/account/not-allowed.sf.md +7 -0
  94. data/pages/account/register-continue.sf.md +11 -0
  95. data/pages/account/register.sf.md +30 -0
  96. data/pages/account/request-new-password-failed.sf.md +13 -0
  97. data/pages/account/set-new-password-success.sf.md +7 -0
  98. data/pages/account/set-new-password.sf.md +25 -0
  99. data/pages/categories/classic.md +10 -0
  100. data/pages/categories/example.md +10 -0
  101. data/pages/categories/jekyll.md +10 -0
  102. data/pages/categories/update.md +10 -0
  103. data/pages/classic/01-features.md +36 -0
  104. data/pages/classic/02-setup.md +113 -0
  105. data/pages/classic/03-pages-and-posts.md +25 -0
  106. data/pages/classic/04-posts.md +18 -0
  107. data/pages/classic/05-menus.md +118 -0
  108. data/pages/classic/06-categories.md +38 -0
  109. data/pages/classic/07-terminology.md +35 -0
  110. data/pages/classic/08-versioning.md +23 -0
  111. data/pages/classic/09-problems.md +25 -0
  112. data/pages/contact/contact.md +18 -0
  113. data/pages/cookie-consent/cookie-consent.md +7 -0
  114. data/pages/download/download.md +10 -0
  115. data/pages/jekyll/01-jekyll.md +42 -0
  116. data/pages/jekyll/02-speed.md +88 -0
  117. data/pages/jekyll/03-ruby.md +19 -0
  118. data/pages/jekyll/04-cron-job.md +163 -0
  119. data/pages/layouts/banner-main.md +36 -0
  120. data/pages/layouts/blocks.md +11 -0
  121. data/pages/layouts/landing-page.md +21 -0
  122. data/pages/layouts/no-sec-no-ter.md +28 -0
  123. data/pages/layouts/sec-left-no-ter.md +28 -0
  124. data/pages/layouts/sec-left-ter-right.md +28 -0
  125. data/pages/layouts/sec-right-no-ter.md +28 -0
  126. data/pages/layouts/sec-right-ter-left.md +28 -0
  127. data/pages/menus/external-url.md +28 -0
  128. data/pages/menus/landing-page.md +8 -0
  129. data/pages/menus/submenu-subsections.md +72 -0
  130. data/pages/menus/submenu1.md +22 -0
  131. data/pages/menus/submenu2.md +21 -0
  132. data/pages/menus/submenu3.md +47 -0
  133. data/pages/menus/submenu4.md +36 -0
  134. data/pages/menus/subsubmenu3-1.md +21 -0
  135. data/pages/menus/subsubmenu3-2.md +21 -0
  136. data/pages/menus/subsubmenu4-1.md +31 -0
  137. data/pages/menus/subsubmenu4-2.md +31 -0
  138. metadata +269 -0
@@ -0,0 +1,22 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div>
6
+
7
+ {%- assign posts-text = 'Posts' -%}
8
+ {%- if site.data.text-for.tPosts -%}{%- assign posts-text = site.data.text-for.tPosts -%}{%- endif -%}
9
+ <h1>{{ posts-text }}</h1>
10
+
11
+ <!-- {{ content }} -->
12
+
13
+ {%- for post in site.posts limit: site.data.setup.number-of-posts-on-home-page -%}
14
+
15
+ <h2><a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a></h2>
16
+ <span class="post-meta">{{ post.date | date: "%F" }}</span>
17
+
18
+ <div>{{ post.content }}</div>
19
+
20
+ {%- endfor -%}
21
+
22
+ </div>
@@ -0,0 +1,30 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="page" itemscope itemtype="http://schema.org/Article">
5
+ <header class="page-header">
6
+ <h1 class="page-title" itemprop="name headline">{{ page.title | escape }}</h1>
7
+ <p class="page-meta">{%- if page.date -%}<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%F" }}</time>{%- endif -%}{%- if page.author -%} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{%- endif -%}</p>
8
+ </header>
9
+ <div class="page-content" itemprop="articleBody">
10
+
11
+ {%- assign buildTimeInSecondsSinceEpoch = site.time | date: "%s" | plus: 0 -%}
12
+ {%- assign pageInSecondsSindsEpoch = page.date | date:"%s" | plus: 0 -%}
13
+
14
+ {%- if pageInSecondsSindsEpoch < buildTimeInSecondsSinceEpoch %}
15
+ <!-- Page content -->
16
+ {{ content }}
17
+ <!-- End of page content -->
18
+ {% else -%}
19
+ {%- assign future-release = 'This article is scheduled for release in the near future.' -%}
20
+ {%- if site.data.text-for.tFutureRelease -%}
21
+ {%- assign future-release = site.data.text-for.tFutureRelease -%}
22
+ {%- endif -%}
23
+ <p>{{ future-release }}</p>
24
+ {% endif -%}
25
+
26
+ </div>
27
+ {%- if site.disqus.shortname -%}
28
+ {% include disqus-comments.html %}
29
+ {%- endif %}
30
+ </article>
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="post" itemscope itemtype="http://schema.org/BlogPosting">
5
+ <header class="post-header">
6
+ <h1 class="post-title" itemprop="name headline">{{ page.title | escape }}</h1>
7
+ <p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%F" }}</time>{%- if page.author -%} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{%- endif -%}</p>
8
+ {%- if page.image -%}<img class="image-float-right" src="{{ page.image }}">{%- endif %}
9
+ </header>
10
+ <div class="post-content" itemprop="articleBody">
11
+
12
+ <!-- Post content -->
13
+ {{ content }}
14
+ <!-- End post content -->
15
+
16
+ </div>
17
+ {%- if site.disqus.shortname -%}
18
+ {% include disqus-comments.html %}
19
+ {%- endif %}
20
+ </article>
@@ -0,0 +1,1178 @@
1
+ // *********************************************************************************************************************
2
+ //
3
+ // This file replaces the main.sccs file form the Jekyll theme minima.
4
+ //
5
+ // The purpose of this file is to configure the visual appearance of the website in all aspects.
6
+ //
7
+ // To configure the functional aspects see the "site/_data/setup.yml" file.
8
+ //
9
+ // An honest attempt was made to clearly separate the functional and appearance aspects of the site, but reality always
10
+ // intrudes. So be sure to check both this file and the setup file when something unforseen happens.
11
+ //
12
+ // If you find that you need to make changes to any other file for something that your gut says should be configurable
13
+ // from this file, or should be in this file any way, please let me know at rien@balancingrock.nl.
14
+ //
15
+ // *********************************************************************************************************************
16
+
17
+
18
+ // *********************************************************************************************************************
19
+ // main.css default settings
20
+ // ---------------------------------------------------------------------------------------------------------------------
21
+ // These definitions have been taken from main.scss
22
+ //
23
+ $theme-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
24
+ $theme-font-size: 16px;
25
+ $theme-font-weight: 400;
26
+ $small-1-font-size: $theme-font-size * 0.875;
27
+ $small-2-font-size: $small-1-font-size * 0.875;
28
+ $small-3-font-size: $small-2-font-size * 0.875;
29
+ $small-4-font-size: $small-3-font-size * 0.875;
30
+ $small-5-font-size: $small-4-font-size * 0.875;
31
+ $large-1-font-size: $theme-font-size * 1.125;
32
+ $large-2-font-size: $large-1-font-size * 1.125;
33
+ $theme-line-height: 1.5;
34
+ //
35
+ $hspacing-unit: 14px; // For best results, use even numbers only
36
+ $vspacing-unit: 14px; // For best results, use even numbers only
37
+ //
38
+ $text-color: #111;
39
+ $background-color: #fdfdfd; // Applied to the top element, override by background settings below
40
+ //
41
+ $grey-color: #828282;
42
+ $grey-color-light: lighten($grey-color, 40%);
43
+ $grey-color-light-light: lighten($grey-color-light, 40%);
44
+ $grey-color-dark: darken($grey-color, 25%);
45
+
46
+ // Since Liquid is not available, it is necessary to redefine the baseurl from the _config.yml file here
47
+ //
48
+ $baseurl: ""; // eg: "/classic" a leading '/' is important.
49
+
50
+ // *********************************************************************************************************************
51
+ // General color and background settings
52
+ // ---------------------------------------------------------------------------------------------------------------------
53
+ // The theme-color is the default for some of the other elements that can be colored in this theme.
54
+ //
55
+ $theme-color: green;
56
+
57
+ // Background color, picture or pattern.
58
+ //
59
+ // See http://www.w3schools.com/cssref/css3_pr_background.asp for a full description.
60
+ // Example: ...-background: url("#{$baseurl}/assets/img/bckgnd.png") repeat
61
+ //
62
+ // The body panel encompasses the entire DOM.
63
+ // CSS property: Background.
64
+ //
65
+ $background-widest: none;
66
+ $background-medium: none;
67
+ $background-narrow: none;
68
+
69
+
70
+ // *********************************************************************************************************************
71
+ // Banner area
72
+ // ---------------------------------------------------------------------------------------------------------------------
73
+ // The banner area encompasses the banner ( banner-icon, banner title-area, banner-menu-symbol ),
74
+ // menubar-top-separator, menubar and the menubar-bottom-separator.
75
+
76
+ // When the banner area is customized the height of the banner-area as determined from the DOM may be wrong.
77
+ // For the "top-fixed" banner position (see setup.yml) this may result in content that shows up behind (or is hidden
78
+ // by) the elements of the banner-area, most likely the menubar.
79
+ // To compensate for this, assign a value to this height.
80
+ //
81
+ // CSS property: Height
82
+ //
83
+ $add-to-banner-area-height-narrow: 0px;
84
+ $add-to-banner-area-height-medium: 0px;
85
+ $add-to-banner-area-height-widest: 0px;
86
+
87
+ // See setup.yml: IF the banner-position is set to 'top' or 'main' these values should be zero (0px). If the
88
+ // banner-position is set to 'top-fixed' then this value should be set to the height of the banner-area.
89
+ //
90
+ // Note: This prevents an anchored link from scrolling to a position behind the banner-area.
91
+ //
92
+ $anchor-top-fixed-offset-narrow: 0px;
93
+ $anchor-top-fixed-offset-medium: 0px;
94
+ $anchor-top-fixed-offset-widest: 0px;
95
+
96
+ // *********************************************************************************************************************
97
+ // Banner
98
+ // ---------------------------------------------------------------------------------------------------------------------
99
+ // Disabling the banner also disables the banner-icon, banner-title, banner-subtitle and banner-menu-symbol.
100
+ // When the banner is enabled, the height of the banner *must* always be set explicitly (there are no HTML elements
101
+ // inside the DOM of the 'banner' class).
102
+ //
103
+ $banner-enabled-narrow: true;
104
+ $banner-enabled-medium: true;
105
+ $banner-enabled-widest: true;
106
+
107
+ // The height of the banner. (Not the banner-area!)
108
+ // Always set a fixed value ('auto' and percentages don't work)
109
+ // CSS property: Height
110
+ //
111
+ $banner-height-narrow: 48px;
112
+ $banner-height-medium: 68px;
113
+ $banner-height-widest: 135px;
114
+
115
+ // The background of the banner. (Not the banner-area!)
116
+ // CSS property: Background.
117
+ //
118
+ $banner-background-narrow: white;
119
+ $banner-background-medium: white;
120
+ $banner-background-widest: white;
121
+
122
+
123
+ // *********************************************************************************************************************
124
+ // Banner Icon
125
+ // ---------------------------------------------------------------------------------------------------------------------
126
+ // The banner icon is positioned in a container with the same size as the banner. But the banner icon is not
127
+ // contained in the DOM and thus does not drive the height of the banner or banner-area.
128
+ //
129
+ // Controls display of the icon.
130
+ // Note: Disabling the banner also disables the icon.
131
+ //
132
+ $banner-icon-enabled-narrow: true;
133
+ $banner-icon-enabled-medium: true;
134
+ $banner-icon-enabled-widest: true;
135
+
136
+ // The z-order of the icon. Use this to position the icon relative to the title-area and the menu-symbol.
137
+ // CSS property: z-index
138
+ //
139
+ $banner-icon-z-index-narrow: 1;
140
+ $banner-icon-z-index-medium: 1;
141
+ $banner-icon-z-index-widest: 1;
142
+
143
+ // Positions the icon horizontally in the banner area.
144
+ // CSS property: justify-content
145
+ //
146
+ // Useful values: flex-start, center, flex-end.
147
+ //
148
+ $banner-icon-justify-content-narrow: flex-start;
149
+ $banner-icon-justify-content-medium: flex-start;
150
+ $banner-icon-justify-content-widest: flex-start;
151
+
152
+ // Positions the icon verticall in the banner area.
153
+ // CSS property: align-items
154
+ //
155
+ // Useful values: flex-start, center, flex-end.
156
+ //
157
+ $banner-icon-align-items-narrow: center;
158
+ $banner-icon-align-items-medium: center;
159
+ $banner-icon-align-items-widest: center;
160
+
161
+ // The width of the icon div.
162
+ // CSS property: width
163
+ //
164
+ $banner-icon-width-narrow: auto;
165
+ $banner-icon-width-medium: auto;
166
+ $banner-icon-width-widest: auto;
167
+
168
+ // The height of the icon div.
169
+ // CSS property: height
170
+ //
171
+ $banner-icon-height-narrow: auto;
172
+ $banner-icon-height-medium: auto;
173
+ $banner-icon-height-widest: auto;
174
+
175
+ // The padding can be used to tweak the position of the icon inside its html div element.
176
+ // CSS property: padding
177
+ //
178
+ $banner-icon-padding-narrow: 0 0 0 $hspacing-unit;
179
+ $banner-icon-padding-medium: 0px;
180
+ $banner-icon-padding-widest: 0px;
181
+
182
+ // The url for the icon to be loaded into the div.
183
+ // CSS property: content
184
+ //
185
+ // Example: $banner-icon-url-...: url("#{$baseurl}/assets/img/wide-icon.png");
186
+ // Set to 'none' if there is no banner icon.
187
+ //
188
+ $banner-icon-url-narrow: url("#{$baseurl}/assets/img/cog-wheels-60x43.png");
189
+ $banner-icon-url-medium: url("#{$baseurl}/assets/img/cog-wheels-120x68.png");
190
+ $banner-icon-url-widest: url("#{$baseurl}/assets/img/cog-wheels-240x135.png");
191
+
192
+ // The background for the icon div.
193
+ // CSS property: background
194
+ //
195
+ $banner-icon-background-narrow: none;
196
+ $banner-icon-background-medium: none;
197
+ $banner-icon-background-widest: none;
198
+
199
+
200
+ // *********************************************************************************************************************
201
+ // Banner Title and Subtitle
202
+ // ---------------------------------------------------------------------------------------------------------------------
203
+ // The banner title and banner subtitle are placed in an html div element (called title-area) that is placed in
204
+ // a container with the same size as the banner.
205
+
206
+ // Controls display of the title.
207
+ // Note: Disabling the banner also disables the title.
208
+ //
209
+ // Values: true | false
210
+ //
211
+ $banner-title-enabled-narrow: true;
212
+ $banner-title-enabled-medium: true;
213
+ $banner-title-enabled-widest: true;
214
+
215
+ // Controls display of the subtitle.
216
+ // Note: Disabling the banner also disables the subtitle.
217
+ //
218
+ // Values: true | false
219
+ //
220
+ $banner-subtitle-enabled-narrow: false;
221
+ $banner-subtitle-enabled-medium: false;
222
+ $banner-subtitle-enabled-widest: true;
223
+
224
+ // The z-order of the title-area. Use this to position the title-area relative to the icon and the menu-symbol.
225
+ // CSS property: z-index
226
+ //
227
+ $banner-title-area-z-index-narrow: 2;
228
+ $banner-title-area-z-index-medium: 2;
229
+ $banner-title-area-z-index-widest: 2;
230
+
231
+ // Size the title area horizontally
232
+ // CSS property: width
233
+ //
234
+ $banner-title-area-width-narrow: auto;
235
+ $banner-title-area-width-medium: auto;
236
+ $banner-title-area-width-widest: auto;
237
+
238
+ // Size the title area vertically
239
+ // CSS property: height
240
+ //
241
+ $banner-title-area-height-narrow: auto;
242
+ $banner-title-area-height-medium: auto;
243
+ $banner-title-area-height-widest: auto;
244
+
245
+ // Background of the title area
246
+ // CSS property: background
247
+ //
248
+ $banner-title-area-background-narrow: none;
249
+ $banner-title-area-background-medium: none;
250
+ $banner-title-area-background-widest: none;
251
+
252
+ // Horizontally position the title area inside the banner.
253
+ // CSS property: justify-content
254
+ //
255
+ // Useful values are: flex-start | center | flex-end
256
+ //
257
+ $banner-title-area-justify-content-narrow: center;
258
+ $banner-title-area-justify-content-medium: center;
259
+ $banner-title-area-justify-content-widest: center;
260
+
261
+ // Vertically position the title area inside the banner.
262
+ // CSS property: align-items
263
+ //
264
+ // Useful values are: flex-start | center | flex-end
265
+ //
266
+ $banner-title-area-align-items-narrow: center;
267
+ $banner-title-area-align-items-medium: center;
268
+ $banner-title-area-align-items-widest: center;
269
+
270
+ // Position the title and subtitle either above eachother or next to each other.
271
+ // CSS property: flex-direction
272
+ //
273
+ // Possible values: column | row
274
+ //
275
+ $banner-title-subtitle-flex-direction-narrow: column;
276
+ $banner-title-subtitle-flex-direction-medium: column;
277
+ $banner-title-subtitle-flex-direction-widest: column;
278
+
279
+ // Horizontally position the title and subtitle in the title area
280
+ // CSS property: justify-content
281
+ //
282
+ // Useful values are: flex-start | center | flex-end
283
+ //
284
+ $banner-title-subtitle-justify-content-narrow: center;
285
+ $banner-title-subtitle-justify-content-medium: center;
286
+ $banner-title-subtitle-justify-content-widest: center;
287
+
288
+ // Vertically position the title and subtitle in the title area
289
+ // CSS property: align-items
290
+ //
291
+ // Useful values are: flex-start | center | flex-end
292
+ //
293
+ $banner-title-subtitle-align-items-narrow: center;
294
+ $banner-title-subtitle-align-items-medium: center;
295
+ $banner-title-subtitle-align-items-widest: flex-end;
296
+
297
+ // Fine tuning of the title position.
298
+ //
299
+ // If the title must be moved a little left, add some padding on the right.
300
+ // If it must be moved a little down, add some padding on top. Etc.
301
+ //
302
+ // CSS property: padding
303
+ //
304
+ $banner-title-padding-narrow: 0px;
305
+ $banner-title-padding-medium: 0px;
306
+ $banner-title-padding-widest: 0px;
307
+
308
+ // Fine tuning of the subtitle position.
309
+ //
310
+ // If the subtitle must be moved a little left, add some padding on the right.
311
+ // If it must be moved a little down, add some padding on top. Etc.
312
+ //
313
+ // CSS property: padding
314
+ //
315
+ $banner-subtitle-padding-narrow: 0px;
316
+ $banner-subtitle-padding-medium: 0px;
317
+ $banner-subtitle-padding-widest: 0px;
318
+
319
+ // The font for the title.
320
+ // CSS property: font
321
+ //
322
+ // Note that a valid font specification requires as a minimum the size and font family
323
+ //
324
+ $banner-title-font-narrow: 20px $theme-font-family;
325
+ $banner-title-font-medium: 25px $theme-font-family;
326
+ $banner-title-font-widest: 40px $theme-font-family;
327
+
328
+ // The font for the subtitle.
329
+ // CSS property: font
330
+ //
331
+ // Note that a valid font specification requires as a minimum the size and font family
332
+ //
333
+ $banner-subtitle-font-narrow: 12px $theme-font-family;
334
+ $banner-subtitle-font-medium: 15px $theme-font-family;
335
+ $banner-subtitle-font-widest: 18px $theme-font-family;
336
+
337
+ // The color for the title.
338
+ // CSS property: color
339
+ //
340
+ $banner-title-color-narrow: $theme-color;
341
+ $banner-title-color-medium: $theme-color;
342
+ $banner-title-color-widest: $theme-color;
343
+
344
+ // The color for the subtitle.
345
+ // CSS property: color
346
+ //
347
+ $banner-subtitle-color-narrow: $theme-color;
348
+ $banner-subtitle-color-medium: $theme-color;
349
+ $banner-subtitle-color-widest: lighten(black, 50%);
350
+
351
+
352
+ // *********************************************************************************************************************
353
+ // Banner Menu Symbol
354
+ // ---------------------------------------------------------------------------------------------------------------------
355
+ // The banner menu symbol is used to hide or disclose the menu bar.
356
+ // The banner menu symbol is centered in a tap area that is positioned in a container with the same size as the
357
+ // banner but is located outside the DOM.
358
+
359
+ // Controls display of the banner menu symbol.
360
+ // Note: Disabling the banner also disables the title.
361
+ // Note: This does NOT control visibility of the menubar!
362
+ //
363
+ $banner-menu-symbol-enabled-narrow: true;
364
+ $banner-menu-symbol-enabled-medium: true;
365
+ $banner-menu-symbol-enabled-widest: false;
366
+
367
+ // The z-order of the menu symbol. Use this to position the menu symbol relative to the title-area and the icon.
368
+ // CSS property: z-index
369
+ //
370
+ $banner-menu-symbol-z-index-narrow: 3;
371
+ $banner-menu-symbol-z-index-medium: 3;
372
+ $banner-menu-symbol-z-index-widest: 3;
373
+
374
+ // Horizontally position the menu symbol tap area in the banner.
375
+ // CSS property: justify-content
376
+ //
377
+ // Useful values are: flex-start | center | flex-end
378
+ //
379
+ $banner-menu-symbol-justify-content-narrow: flex-end;
380
+ $banner-menu-symbol-justify-content-medium: flex-end;
381
+ $banner-menu-symbol-justify-content-widest: flex-end;
382
+
383
+ // Vertically position the menu symbol tap area in the banner.
384
+ // CSS property: align-items
385
+ //
386
+ // Useful values are: flex-start | center | flex-end
387
+ //
388
+ $banner-menu-symbol-align-items-narrow: center;
389
+ $banner-menu-symbol-align-items-medium: center;
390
+ $banner-menu-symbol-align-items-widest: center;
391
+
392
+ // Width of the menu symbol tap or click area (the symbol itself is centered in this area)
393
+ // CSS property: width
394
+ //
395
+ $banner-menu-symbol-tap-area-width-narrow: 10%;
396
+ $banner-menu-symbol-tap-area-width-medium: 10%;
397
+ $banner-menu-symbol-tap-area-width-widest: 10%;
398
+
399
+ // Height of the menu symbol tap or click area (the symbol itself is centered in this area)
400
+ // CSS property: height
401
+ //
402
+ $banner-menu-symbol-tap-area-height-narrow: 100%;
403
+ $banner-menu-symbol-tap-area-height-medium: 100%;
404
+ $banner-menu-symbol-tap-area-height-widest: 100%;
405
+
406
+ // The background for the menu symbol tap area
407
+ // CSS property: background
408
+ //
409
+ $banner-menu-symbol-tap-area-background-narrow: none;
410
+ $banner-menu-symbol-tap-area-background-medium: none;
411
+ $banner-menu-symbol-tap-area-background-widest: none;
412
+
413
+ // The border of the menu symbol tap area
414
+ // CSS property: border
415
+ //
416
+ $banner-menu-symbol-tap-area-border-narrow: none;
417
+ $banner-menu-symbol-tap-area-border-medium: none;
418
+ $banner-menu-symbol-tap-area-border-widest: none;
419
+
420
+ // Fine tuning of the placing of the menu symbol in the tap area
421
+ // CSS property: padding
422
+ //
423
+ $banner-menu-symbol-padding-narrow: 0px;
424
+ $banner-menu-symbol-padding-medium: 0px;
425
+ $banner-menu-symbol-padding-widest: 0px;
426
+
427
+ // The menu symbol to be used.
428
+ // Written using the :after CSS selector.
429
+ //
430
+ $banner-menu-symbol-code-narrow: '\02261';
431
+ $banner-menu-symbol-code-medium: '\02261';
432
+ $banner-menu-symbol-code-widest: '\02261';
433
+
434
+ // The color of the menu symbol.
435
+ // CSS property: color
436
+ //
437
+ $banner-menu-symbol-color-narrow: $theme-color;
438
+ $banner-menu-symbol-color-medium: $theme-color;
439
+ $banner-menu-symbol-color-widest: $theme-color;
440
+
441
+ // The font to be used for the menu symbol.
442
+ // CSS property: font
443
+ //
444
+ $banner-menu-symbol-font-narrow: 30px $theme-font-family;
445
+ $banner-menu-symbol-font-medium: 35px $theme-font-family;
446
+ $banner-menu-symbol-font-widest: 40px $theme-font-family;
447
+
448
+
449
+ // *********************************************************************************************************************
450
+ // Menubar top separator
451
+ // ---------------------------------------------------------------------------------------------------------------------
452
+ // The menubar top separator is placed between the banner and the menubar.
453
+ //
454
+
455
+ // Controls visibility
456
+ //
457
+ $menubar-top-separator-enabled-narrow: true;
458
+ $menubar-top-separator-enabled-medium: true;
459
+ $menubar-top-separator-enabled-widest: true;
460
+
461
+ // The height of the seperator.
462
+ // CSS property: height
463
+ //
464
+ $menubar-top-separator-height-narrow: 2px;
465
+ $menubar-top-separator-height-medium: 2px;
466
+ $menubar-top-separator-height-widest: 2px;
467
+
468
+ // The background of the separator
469
+ // CSS property: background
470
+ //
471
+ $menubar-top-separator-background-narrow: $theme-color;
472
+ $menubar-top-separator-background-medium: $theme-color;
473
+ $menubar-top-separator-background-widest: $theme-color;
474
+
475
+
476
+ // *********************************************************************************************************************
477
+ // Menubar bottom separator
478
+ // ---------------------------------------------------------------------------------------------------------------------
479
+ // The menubar bottom separator is placed between the menubar and the column panel.
480
+ // This separator will be disabled and enabled together with the menubar itself.
481
+ //
482
+
483
+ // Controls visibility
484
+ //
485
+ $menubar-bottom-separator-enabled-narrow: true;
486
+ $menubar-bottom-separator-enabled-medium: true;
487
+ $menubar-bottom-separator-enabled-widest: true;
488
+
489
+ // The height of the seperator.
490
+ // CSS property: height
491
+ //
492
+ $menubar-bottom-separator-height-narrow: 2px;
493
+ $menubar-bottom-separator-height-medium: 2px;
494
+ $menubar-bottom-separator-height-widest: 2px;
495
+
496
+ // The background of the separator
497
+ // CSS property: background
498
+ //
499
+ $menubar-bottom-separator-background-narrow: $theme-color;
500
+ $menubar-bottom-separator-background-medium: $theme-color;
501
+ $menubar-bottom-separator-background-widest: $theme-color;
502
+
503
+
504
+ // *********************************************************************************************************************
505
+ // Menu bar (& dropdown)
506
+ // ---------------------------------------------------------------------------------------------------------------------
507
+ // The menubar contains a sequence of menubar items and menubar separators. The menubar items correspond to the
508
+ // menuTopTitle in the YAML frontmatter. Below the menu item there can be a dropdown box containing the subitems.
509
+ // The subitems correspond to menuSubTitle and menuSubs.title YAML frontmatter.
510
+ //
511
+
512
+ // Controls visibility of the menubar.
513
+ // Use this to disable the menubar permanently.
514
+ //
515
+ $menubar-enabled-narrow: true;
516
+ $menubar-enabled-medium: true;
517
+ $menubar-enabled-widest: true;
518
+
519
+ // The height of the menubar.
520
+ // To fill out the entire height of the menubar, leave the height set to 'auto' and set the height of a menu-item
521
+ // instead.
522
+ // CSS property: height
523
+ //
524
+ // Note: For the narrow layout it is always set to 'auto'.
525
+ //
526
+ $menubar-height-medium: auto;
527
+ $menubar-height-widest: auto;
528
+
529
+ // Horizontally position the icon, items and item-separators in the menubar.
530
+ // CSS property: justify-content
531
+ //
532
+ $menubar-justify-content-medium: center;
533
+ $menubar-justify-content-widest: center;
534
+
535
+ // Vertically position the items and item-separators in the menubar.
536
+ // CSS property: align-items
537
+ //
538
+ // Useful values: flex-start | center | flex-end
539
+ //
540
+ $menubar-align-items-medium: center;
541
+ $menubar-align-items-widest: center;
542
+
543
+ // Background for the menubar.
544
+ // CSS property: background
545
+ //
546
+ $menubar-background-narrow: white;
547
+ $menubar-background-medium: white;
548
+ $menubar-background-widest: white;
549
+
550
+ // Border for the menubar.
551
+ // CSS property: border
552
+ //
553
+ $menubar-border-medium: none;
554
+ $menubar-border-widest: none;
555
+
556
+ // Shadow for the menubar.
557
+ // CSS property: box-shadow
558
+ //
559
+ $menubar-box-shadow-medium: none;
560
+ $menubar-box-shadow-widest: none;
561
+
562
+ // The font to be used for the text of an entry
563
+ // CSS property: font
564
+ //
565
+ $menubar-item-font-narrow: $theme-font-size $theme-font-family;
566
+ $menubar-item-font-medium: $theme-font-size $theme-font-family;
567
+ $menubar-item-font-widest: $theme-font-size $theme-font-family;
568
+ $menubar-subitem-font-medium: $small-1-font-size $theme-font-family;
569
+ $menubar-subitem-font-widest: $small-1-font-size $theme-font-family;
570
+ $menubar-subsubitem-font-medium: $menubar-subitem-font-medium;
571
+ $menubar-subsubitem-font-widest: $menubar-subitem-font-widest;
572
+
573
+ // The color & hover color to be used for the text of an entry
574
+ // CSS property: color
575
+ //
576
+ $menubar-item-color-narrow: $theme-color;
577
+ $menubar-item-color-medium: $theme-color;
578
+ $menubar-item-color-widest: $theme-color;
579
+ $menubar-item-color-hover-narrow: black;
580
+ $menubar-item-color-hover-medium: black;
581
+ $menubar-item-color-hover-widest: black;
582
+ $menubar-item-color-selected-narrow: $theme-color;
583
+ $menubar-item-color-selected-medium: $theme-color;
584
+ $menubar-item-color-selected-widest: $theme-color;
585
+ $menubar-subitem-color-medium: $theme-color;
586
+ $menubar-subitem-color-widest: $theme-color;
587
+ $menubar-subitem-color-hover-medium: black;
588
+ $menubar-subitem-color-hover-widest: black;
589
+ $menubar-subitem-color-selected-medium: $theme-color;
590
+ $menubar-subitem-color-selected-widest: $theme-color;
591
+ $menubar-subsubitem-color-medium: $menubar-subitem-color-medium;
592
+ $menubar-subsubitem-color-widest: $menubar-subitem-color-widest;
593
+ $menubar-subsubitem-color-hover-medium: $menubar-subitem-color-hover-medium;
594
+ $menubar-subsubitem-color-hover-widest: $menubar-subitem-color-hover-widest;
595
+ $menubar-subsubitem-color-selected-medium: $menubar-subitem-color-selected-medium;
596
+ $menubar-subsubitem-color-selected-widest: $menubar-subitem-color-selected-widest;
597
+
598
+ // The background & hover background & active-page background to be used for an entry
599
+ // The selected background is used when an item is visible and the page that is linked to is visible.
600
+ // CSS property: background
601
+ //
602
+ $menubar-item-background-narrow: $grey-color-light;
603
+ $menubar-item-background-medium: white;
604
+ $menubar-item-background-widest: white;
605
+ $menubar-item-background-hover-narrow: $grey-color-light;
606
+ $menubar-item-background-hover-medium: $grey-color-light;
607
+ $menubar-item-background-hover-widest: $grey-color-light;
608
+ $menubar-item-background-selected-narrow: $grey-color-light;
609
+ $menubar-item-background-selected-medium: $grey-color-light;
610
+ $menubar-item-background-selected-widest: $grey-color-light;
611
+ $menubar-subitem-background-narrow: $grey-color-light;
612
+ $menubar-subitem-background-medium: none;
613
+ $menubar-subitem-background-widest: none;
614
+ $menubar-subitem-background-hover-narrow: $grey-color-light;
615
+ $menubar-subitem-background-hover-medium: $grey-color-light;
616
+ $menubar-subitem-background-hover-widest: $grey-color-light;
617
+ $menubar-subitem-background-selected-narrow: $grey-color-light;
618
+ $menubar-subitem-background-selected-medium: $grey-color-light;
619
+ $menubar-subitem-background-selected-widest: $grey-color-light;
620
+ $menubar-subsubitem-background-narrow: $grey-color-light;
621
+ $menubar-subsubitem-background-medium: none;
622
+ $menubar-subsubitem-background-widest: none;
623
+ $menubar-subsubitem-background-hover-narrow: $grey-color-light;
624
+ $menubar-subsubitem-background-hover-medium: $grey-color-light;
625
+ $menubar-subsubitem-background-hover-widest: $grey-color-light;
626
+ $menubar-subsubitem-background-selected-narrow: $grey-color-light;
627
+ $menubar-subsubitem-background-selected-medium: $grey-color-light;
628
+ $menubar-subsubitem-background-selected-widest: $grey-color-light;
629
+
630
+ // The height of a menubar item.
631
+ // For medium and wide layout it is recommended to set the height to 'auto' and drive the height by the font
632
+ // and padding of the item.
633
+ // For narrow the height of the item should be big enough to tap.
634
+ // CSS property: height
635
+ //
636
+ $menubar-item-height-narrow: 3 * $vspacing-unit;
637
+ $menubar-subitem-height-narrow: 3 * $vspacing-unit;
638
+ $menubar-subsubitem-height-narrow: 3 * $vspacing-unit;
639
+ //
640
+ $menubar-item-height-medium: auto;
641
+ $menubar-item-height-widest: auto;
642
+
643
+ // Padding of the menu entries
644
+ // CSS property: padding
645
+ //
646
+ $menubar-item-padding-medium: $vspacing-unit/4 $hspacing-unit;
647
+ $menubar-item-padding-widest: $vspacing-unit/4 $hspacing-unit;
648
+ $menubar-subitem-padding-medium: $vspacing-unit/4 $hspacing-unit;
649
+ $menubar-subitem-padding-widest: $vspacing-unit/4 $hspacing-unit;
650
+ $menubar-subsubitem-padding-medium: $vspacing-unit/4 $hspacing-unit;
651
+ $menubar-subsubitem-padding-widest: $vspacing-unit/4 $hspacing-unit;
652
+
653
+ // The disclosure symbol definitions for the narrow layout.
654
+ // Written to a <p> with the CSS :after selector.
655
+ //
656
+ $menubar-item-title-symbol-code-closed-narrow: '\021E8';
657
+ $menubar-item-title-symbol-code-open-narrow: '\021E9';
658
+ $menubar-subitem-title-symbol-code-closed-narrow: '\021E8';
659
+ $menubar-subitem-title-symbol-code-open-narrow: '\021E9';
660
+
661
+ // The width of the disclosure area in the narrow vertical menubar.
662
+ // CSS property: width
663
+ //
664
+ $menubar-item-disclosure-symbol-width-narrow: 10%;
665
+
666
+ // The menubar item separator symbol.
667
+ // This symbol appears between items when the menubar is horizontal, i.e. in de medium and wide layout.
668
+ // Written to a <p> with the CSS :after selector.
669
+ //
670
+ $menubar-item-separator-symbol-medium: '';
671
+ $menubar-item-separator-symbol-widest: '';
672
+
673
+ // The font to be used for the item separator.
674
+ // CSS property: font
675
+ //
676
+ $menubar-item-separator-symbol-font-medium: $theme-font-size $theme-font-family;
677
+ $menubar-item-separator-symbol-font-widest: $theme-font-size $theme-font-family;
678
+
679
+ // The color for the item separator.
680
+ // CSS property: color
681
+ //
682
+ $menubar-item-separator-symbol-color-medium: $theme-color;
683
+ $menubar-item-separator-symbol-color-widest: $theme-color;
684
+
685
+ // The background behind the item separator
686
+ // CSS property: background
687
+ //
688
+ $menubar-item-separator-symbol-background-medium: $menubar-item-background-medium;
689
+ $menubar-item-separator-symbol-background-widest: $menubar-item-background-widest;
690
+
691
+ // The padding around the item separator
692
+ // CSS property: padding
693
+ //
694
+ $menubar-item-separator-symbol-padding-medium: $vspacing-unit/4 0px;
695
+ $menubar-item-separator-symbol-padding-widest: $vspacing-unit/4 0px;
696
+
697
+ // The margin around the dropdown part of the menubar containing the sub-items.
698
+ // The default shows a left-indent such that the submenu items appear below and to the right the menu title.
699
+ // CSS property: margin
700
+ //
701
+ $menubar-dropdown-margin-medium: 0px 0px 0px $hspacing-unit;
702
+ $menubar-dropdown-margin-widest: 0px 0px 0px $hspacing-unit;
703
+
704
+ // The padding inside the dropdown part of the menubar containing the sub-items.
705
+ // CSS property: padding
706
+ //
707
+ $menubar-dropdown-padding-medium: 0px;
708
+ $menubar-dropdown-padding-widest: 0px;
709
+
710
+ // The background for the dropdown box and the sub-dropdown box
711
+ // The background for the boxes are only visible when no background for the subitem or subsubitem has been specified.
712
+ // CSS property: background
713
+ //
714
+ $menubar-dropdown-background-medium: white;
715
+ $menubar-dropdown-background-widest: white;
716
+ $menubar-sub-dropdown-background-medium: $menubar-dropdown-background-medium;
717
+ $menubar-sub-dropdown-background-widest: $menubar-dropdown-background-widest;
718
+
719
+ // The border around the dropdown box with subitems or the sub-dropdown box containing subsub-items.
720
+ // CSS property: border
721
+ //
722
+ $menubar-dropdown-border-medium: none;
723
+ $menubar-dropdown-border-widest: none;
724
+ $menubar-sub-dropdown-border-medium: $menubar-dropdown-border-medium;
725
+ $menubar-sub-dropdown-border-widest: $menubar-dropdown-border-widest;
726
+
727
+ // The shadow around the dropdown or sub-dropdown part boxes.
728
+ // CSS property: box-shadow
729
+ //
730
+ $menubar-dropdown-box-shadow-medium: 0em 0.25em 0.25em 0em rgba(0,0,0,0.2);
731
+ $menubar-dropdown-box-shadow-widest: 0em 0.25em 0.25em 0em rgba(0,0,0,0.2);
732
+ $menubar-sub-dropdown-box-shadow-medium: $menubar-dropdown-box-shadow-medium;
733
+ $menubar-sub-dropdown-box-shadow-widest: $menubar-dropdown-box-shadow-widest;
734
+
735
+ // The indent for submenu items in relation to the preceding top title for the narrow layout only.
736
+ // CSS property: left-padding
737
+ //
738
+ $menubar-subitem-indent-narrow: 2 * $hspacing-unit;
739
+ $menubar-subsubitem-indent-narrow: 4 * $hspacing-unit;
740
+
741
+ // The height of the separator lines.
742
+ // This line is only visible in the narrow layout (which is vertical).
743
+ // CSS property: height
744
+ //
745
+ $menubar-item-separator-line-width-narrow: 4px;
746
+ $menubar-subitem-separator-line-width-narrow: 2px;
747
+ $menubar-subsubitem-separator-line-width-narrow: 1px;
748
+
749
+ // The color of the separator lines.
750
+ // This line is only visible in the narrow layout (which is vertical).
751
+ // CSS property: color
752
+ //
753
+ $menubar-item-separator-line-color-narrow: $menubar-background-narrow;
754
+ $menubar-subitem-separator-line-color-narrow: $menubar-background-narrow;
755
+ $menubar-subsubitem-separator-line-color-narrow: $menubar-background-narrow;
756
+
757
+
758
+ // *********************************************************************************************************************
759
+ // Menubar Icon
760
+ // ---------------------------------------------------------------------------------------------------------------------
761
+ // Before the items and item separators are loaded into the menubar, a menubar icon can be loaded.
762
+ // The file _included/menubar-icon.html can be used for complex icons, or the icon can be assigned here.
763
+ // The menubar icon can also be used to provide some padding before the home item in the menubar.
764
+ // Note that the menubar icon is not shown in the narrow layout.
765
+ //
766
+ // The icon (image)
767
+ // CSS property: content
768
+ //
769
+ $menubar-icon-url-medium: none;
770
+ $menubar-icon-url-widest: none; //url("#{$baseurl}/assets/img/test-pattern-55.png");
771
+
772
+ // Height of the icon
773
+ // CSS property: height
774
+ //
775
+ $menubar-icon-height-medium: auto;
776
+ $menubar-icon-height-widest: auto;
777
+
778
+ // Width of the icon
779
+ // CSS property: width
780
+ //
781
+ $menubar-icon-width-medium: auto;
782
+ $menubar-icon-width-widest: auto;
783
+
784
+ // Padding for the icon or to insert some extra padding (indent) before the first item.
785
+ // CSS property: padding
786
+ //
787
+ $menubar-icon-padding-medium: 0px;
788
+ $menubar-icon-padding-widest: 0px;
789
+
790
+
791
+ // *********************************************************************************************************************
792
+ // Column settings
793
+ // ---------------------------------------------------------------------------------------------------------------------
794
+ // The column panel encompasses the three columns and column separators.
795
+ // CSS property: background
796
+ //
797
+ $column-panel-background-narrow: none;
798
+ $column-panel-background-medium: none;
799
+ $column-panel-background-widest: none;
800
+
801
+ // The width of the columns, these settings drive which layout is used, based on the browser window width.
802
+ // Used in the mixin definitions.
803
+ //
804
+ $primary-column-min-width: 480px;
805
+ $secondary-column-width: 240px;
806
+ $tertiary-column-width: 240px;
807
+
808
+ // For the primary column.
809
+ // CSS property: background
810
+ //
811
+ $primary-column-background-narrow: none;
812
+ $primary-column-background-medium: none;
813
+ $primary-column-background-widest: none;
814
+
815
+ // For the secondary column.
816
+ // CSS property: background
817
+ //
818
+ $secondary-column-background-narrow: none;
819
+ $secondary-column-background-medium: none;
820
+ $secondary-column-background-widest: none;
821
+
822
+ // For the tertiary column.
823
+ // CSS property: background
824
+ //
825
+ $tertiary-column-background-narrow: none;
826
+ $tertiary-column-background-medium: none;
827
+ $tertiary-column-background-widest: none;
828
+
829
+ // Color for the separator between the columns
830
+ // CSS property: border-right (but only the color part)
831
+ //
832
+ $column-separator-color-medium: lighten($grey-color, 30%);
833
+ $column-separator-color-widest: lighten($grey-color, 30%);
834
+
835
+ // Enable/disable display of the column separator
836
+ //
837
+ // Values: true | false
838
+ //
839
+ $column-separator-display: true;
840
+
841
+ // Set the space between the top of the separator and the menubar-bottom-separator.
842
+ // The background for the separator is the background of the column panel.
843
+ // CSS property: margin-top
844
+ //
845
+ $column-separator-top-spacing: $vspacing-unit;
846
+
847
+ // Set the space between the bottom of the separator and the footer separator.
848
+ // The background for the separator is the background of the column panel.
849
+ // CSS property: margin-bottom
850
+ //
851
+ $column-separator-bottom-spacing: $vspacing-unit;
852
+
853
+
854
+ // *********************************************************************************************************************
855
+ // Footer settings
856
+ // ---------------------------------------------------------------------------------------------------------------------
857
+ //
858
+ // Footer background.
859
+ // CSS property: background
860
+ //
861
+ $footer-background-narrow: none;
862
+ $footer-background-medium: none;
863
+ $footer-background-widest: none;
864
+
865
+ // The footer separator is placed between the columns panel and the footer panel.
866
+ // CSS property: border-color
867
+ //
868
+ $footer-separator-color-narrow: $theme-color;
869
+ $footer-separator-color-medium: $theme-color;
870
+ $footer-separator-color-widest: $theme-color;
871
+
872
+ // Enables or disables display of the footer separator
873
+ //
874
+ // Values: true | false
875
+ //
876
+ $footer-separator-display: true;
877
+
878
+ // The font to be used for the footer text.
879
+ // CSS property: font
880
+ //
881
+ $footer-font-narrow: $small-1-font-size $theme-font-family;
882
+ $footer-font-medium: $small-1-font-size $theme-font-family;
883
+ $footer-font-widest: $small-1-font-size $theme-font-family;
884
+
885
+ // The color for the footer text.
886
+ // CSS property: color
887
+ //
888
+ $footer-color-narrow: black;
889
+ $footer-color-medium: black;
890
+ $footer-color-widest: black;
891
+
892
+
893
+ // *********************************************************************************************************************
894
+ // Widget separators
895
+ // ---------------------------------------------------------------------------------------------------------------------
896
+ //
897
+ // The color for the separator.
898
+ // CSS property: border-color
899
+ //
900
+ $widget-separator-color: $theme-color;
901
+
902
+ // Enables or disables display of the widget separator
903
+ //
904
+ // Values: true | false
905
+ //
906
+ $widget-separator-display: true;
907
+
908
+
909
+ // *********************************************************************************************************************
910
+ // Vertical menu
911
+ // ---------------------------------------------------------------------------------------------------------------------
912
+ // The vertical menu is automatically shown at the top of the secondary column when the
913
+ // site.data.setup.drop-down-menu is set to 'no'.
914
+ // It is only shown in the widest and medium layouts, not in the narrow layout.
915
+ // The vertical menu contains sub-menu entries as well as sub-sub-menu entries.
916
+ // The sub-sub-menu entries are disclosed by clicking the sub entry containing the sub-sub entry.
917
+
918
+ // Disable or enable the vertical menu in its entirity.
919
+ // Note: if the site.data.setup.drop-down-menu is set to 'yes' then the vertical menu is disabled regardless of
920
+ // the settings here.
921
+ // Values: true | false
922
+ //
923
+ $vmenu-enable-medium: true;
924
+ $vmenu-enable-widest: true;
925
+
926
+ // The title is a h1 HTML element, enable or disable it
927
+ // Values: true | false
928
+ //
929
+ $vmenu-topTitle-enable-medium: true;
930
+ $vmenu-topTitle-enable-widest: true;
931
+
932
+ // Position the top title text horizontally
933
+ // CSS property: justify-content
934
+ //
935
+ $vmenu-topTitle-justify-content-medium: flex-start;
936
+ $vmenu-topTitle-justify-content-widest: flex-start;
937
+
938
+ // The font for the title of the vertical menu
939
+ // CSS property: font
940
+ //
941
+ $vmenu-topTitle-font-medium: $small-5-font-size $theme-font-family;
942
+ $vmenu-topTitle-font-widest: $small-5-font-size $theme-font-family;
943
+
944
+ // The color for the title of the vertical menu
945
+ // CSS property: color
946
+ //
947
+ $vmenu-topTitle-color-medium: $theme-color;
948
+ $vmenu-topTitle-color-widest: $theme-color;
949
+
950
+ // The background for the title of the vertical menu
951
+ // CSS property: background
952
+ //
953
+ $vmenu-topTitle-background-medium: none;
954
+ $vmenu-topTitle-background-widest: none;
955
+
956
+ // The padding for the title of the vertical menu
957
+ // Use this or the margin to position the top title vertically
958
+ // CSS property: padding
959
+ //
960
+ $vmenu-topTitle-padding-medium: $vspacing-unit/4 $hspacing-unit/2;
961
+ $vmenu-topTitle-padding-widest: $vspacing-unit/4 $hspacing-unit/2;
962
+
963
+ // The margin for the title of the vertical menu
964
+ // Use this or the padding to position the top title vertically
965
+ // CSS property: margin
966
+ //
967
+ $vmenu-topTitle-margin-medium: 0;
968
+ $vmenu-topTitle-margin-widest: 0;
969
+
970
+ // The border for the vertical menu
971
+ // CSS property: border
972
+ //
973
+ $vmenu-border-medium: 1px solid $grey-color-light;
974
+ $vmenu-border-widest: 1px solid $grey-color-light;
975
+
976
+ // The shadow for the vertical menu
977
+ // CSS property: box-shadow
978
+ //
979
+ $vmenu-box-shadow-medium: 0em 0.25em 0.25em 0em rgba(0,0,0,0.2);
980
+ $vmenu-box-shadow-widest: 0em 0.25em 0.25em 0em rgba(0,0,0,0.2);
981
+
982
+ // The background for the vertical menu
983
+ // CSS property: background
984
+ //
985
+ $vmenu-background-medium: none;
986
+ $vmenu-background-widest: none;
987
+
988
+ // The symbol used to show a menu item with subitems that are not shown
989
+ // Written to a <p> with the CSS :after selector.
990
+ //
991
+ $vmenu-subitem-disclosure-symbol-closed: '\021E8';
992
+
993
+ // The symbol used to show a menu item with subitems that are shown
994
+ // Written to a <p> with the CSS :after selector.
995
+ //
996
+ $vmenu-subitem-disclosure-symbol-open: '\021E9';
997
+
998
+ // The width of the disclosure symbol.
999
+ // CSS property: width
1000
+ //
1001
+ $vmenu-subitem-disclosure-area-width-medium: 1.2em;
1002
+ $vmenu-subitem-disclosure-area-width-widest: 1.2em;
1003
+
1004
+ // There can be a separator between the disclosure symbol and the menu title
1005
+ // CSS property: border-right
1006
+ //
1007
+ $vmenu-subitem-disclosure-area-border-right-medium: none;
1008
+ $vmenu-subitem-disclosure-area-border-right-widest: none;
1009
+
1010
+ // The font for the sub menu item
1011
+ // CSS property: font
1012
+ //
1013
+ $vmenu-subitem-font-medium: $small-1-font-size $theme-font-family;
1014
+ $vmenu-subitem-font-widest: $small-1-font-size $theme-font-family;
1015
+
1016
+ // The font color of the sub menu item
1017
+ // CSS property: color
1018
+ //
1019
+ $vmenu-subitem-color-medium: black;
1020
+ $vmenu-subitem-color-widest: black;
1021
+
1022
+ // The font color of the sub menu item when the cursor hovers over it
1023
+ // CSS property: color with the :hover selector
1024
+ //
1025
+ $vmenu-subitem-color-hover-medium: black;
1026
+ $vmenu-subitem-color-hover-widest: black;
1027
+
1028
+ // Padding for the sub menu item title
1029
+ // CSS property: padding
1030
+ //
1031
+ $vmenu-subitem-title-padding-medium: $vspacing-unit/4 $hspacing-unit/2;
1032
+ $vmenu-subitem-title-padding-widest: $vspacing-unit/4 $hspacing-unit/2;
1033
+
1034
+ // The border of the sub menu item
1035
+ // CSS property: border
1036
+ //
1037
+ $vmenu-subitem-border-medium: none;
1038
+ $vmenu-subitem-border-widest: none;
1039
+
1040
+ // The background for the sub menu item
1041
+ // CSS property: background
1042
+ //
1043
+ $vmenu-subitem-background-medium: none;
1044
+ $vmenu-subitem-background-widest: none;
1045
+
1046
+ // The background for the title of the sub menu item when the cursor hovers over it.
1047
+ // CSS property: background
1048
+ //
1049
+ $vmenu-subitem-title-background-hover-medium: $grey-color-light;
1050
+ $vmenu-subitem-title-background-hover-widest: $grey-color-light;
1051
+
1052
+ // The background for the title of the sub menu item when the page it links to is currently displayed.
1053
+ // CSS property: background
1054
+ //
1055
+ $vmenu-subitem-title-background-selected-medium: $grey-color-light;
1056
+ $vmenu-subitem-title-background-selected-widest: $grey-color-light;
1057
+
1058
+ // The font for the sub menu item
1059
+ // CSS property: font
1060
+ //
1061
+ $vmenu-subsubitem-font-medium: $small-1-font-size $theme-font-family;
1062
+ $vmenu-subsubitem-font-widest: $small-1-font-size $theme-font-family;
1063
+
1064
+ // The width of the disclosure area in front of the sub sub menu item title
1065
+ // Note: There can be no disclosure symbol in a subsubitem, hence this has the function of an indent.
1066
+ // CSS property: width
1067
+ //
1068
+ $vmenu-subsubitem-disclosure-area-width-medium: 2em;
1069
+ $vmenu-subsubitem-disclosure-area-width-widest: 2em;
1070
+
1071
+ // There can be a separator between the disclosure symbol and the menu title
1072
+ // CSS property: border-right
1073
+ //
1074
+ $vmenu-subsubitem-disclosure-area-border-right-medium: none;
1075
+ $vmenu-subsubitem-disclosure-area-border-right-widest: none;
1076
+
1077
+ // Padding for a sub-sub menu item
1078
+ // CSS property: padding
1079
+ //
1080
+ $vmenu-subsubitem-title-padding-medium: $vspacing-unit/8 $hspacing-unit/4;
1081
+ $vmenu-subsubitem-title-padding-widest: $vspacing-unit/8 $hspacing-unit/4;
1082
+
1083
+ // The border of a sub-sub menu item
1084
+ // CSS property: border
1085
+ //
1086
+ $vmenu-subsubitem-border-medium: none;
1087
+ $vmenu-subsubitem-border-widest: none;
1088
+
1089
+ // The text color of the sub-sub menu item title
1090
+ // CSS property: color
1091
+ //
1092
+ $vmenu-subsubitem-color-medium: black;
1093
+ $vmenu-subsubitem-color-widest: black;
1094
+
1095
+ // The text color of the sub-sub menu item title when the cursor hovers over it
1096
+ // CSS property: color
1097
+ //
1098
+ $vmenu-subsubitem-color-hover-medium: black;
1099
+ $vmenu-subsubitem-color-hover-widest: black;
1100
+
1101
+ // The background of the sub-sub menu item layout
1102
+ // CSS property: background
1103
+ //
1104
+ $vmenu-subsubitem-background-medium: none;
1105
+ $vmenu-subsubitem-background-widest: none;
1106
+
1107
+ // The background of the sub-sub menu item when the cursor hovers over it
1108
+ // CSS property: background
1109
+ //
1110
+ $vmenu-subsubitem-background-hover-medium: $grey-color-light;
1111
+ $vmenu-subsubitem-background-hover-widest: $grey-color-light;
1112
+
1113
+ // The background of the sub-sub menu item when the page linked to is currently displayed
1114
+ // CSS property: background
1115
+ //
1116
+ $vmenu-subsubitem-background-selected-medium: $grey-color-light;
1117
+ $vmenu-subsubitem-background-selected-widest: $grey-color-light;
1118
+
1119
+
1120
+ // *********************************************************************************************************************
1121
+ // Categories
1122
+ // ---------------------------------------------------------------------------------------------------------------------
1123
+ // These settings are used for the categories widget
1124
+ //
1125
+
1126
+ // The background for the header of the categories widget
1127
+ // CSS properties: background
1128
+ //
1129
+ $category-header-background: none;
1130
+
1131
+ // The background for the header of the categories widget when the cursor hovers over it
1132
+ // CSS properties: background
1133
+ //
1134
+ $category-header-background-hover: $grey-color-light;
1135
+
1136
+ // The background for the items of the categories widget
1137
+ // CSS properties: background
1138
+ //
1139
+ $category-item-background: none;
1140
+
1141
+ // The background for the items of the categories widget when the cursor hovers over it
1142
+ // CSS properties: background
1143
+ //
1144
+ $category-item-background-hover: $grey-color-light;
1145
+
1146
+ // The padding for the items of the categories widget
1147
+ // CSS properties: padding
1148
+ //
1149
+ $category-item-padding: $vspacing-unit/8 $hspacing-unit/4 $vspacing-unit/8 $hspacing-unit;
1150
+
1151
+
1152
+ // *********************************************************************************************************************
1153
+ // Imports
1154
+ // ---------------------------------------------------------------------------------------------------------------------
1155
+ // Note that later imports will override the settings in earlier imports
1156
+ //
1157
+ @import
1158
+ "classic/normalize", // Standard browser adjustments
1159
+ "classic/normalize-override", // Theme related overrides on the standard adjustments
1160
+ "classic/syntax-highlighting",
1161
+ //
1162
+ "classic/theme-internal", // Necessary for correct operation of the theme, do not change!
1163
+ "classic/theme-library", // General class definitions used in several other scss files
1164
+ //
1165
+ "classic/body",
1166
+ "classic/banner-area",
1167
+ "classic/menubar",
1168
+ "classic/columns",
1169
+ "classic/footer",
1170
+ //
1171
+ "classic/vertical-menu",
1172
+ "classic/post",
1173
+ "classic/page",
1174
+ //
1175
+ "classic/custom", // To be used in markdown, add your own here
1176
+ "classic/swiftfire", // Swiftfire specifics
1177
+ "classic/widgets" // For the widgets, add your own settings for your own widgets here
1178
+ ;