jekyll-theme-fica 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 370b73cd35c6858fe878abfae60823e254ee7ac63a0b8a202faa470c4cbffc1f
4
- data.tar.gz: ab3d975feb2e4987a55880f3d69a974402718fbc7f0c4cf69bcfdb7b1c966a9e
3
+ metadata.gz: 1ec04477a6ed001e626c13403d6249d7b135f7cb4eb320b3a6e1f0a671f1e6f6
4
+ data.tar.gz: 653d8463cb6d551d283dc9e9124939fc3ad763a82bba5fe5cd0998ef3c5980b5
5
5
  SHA512:
6
- metadata.gz: 4ac1fa6b7be37883d4be6a5b33c7ac07bdf6ae17c99d8e927804ce6416a6f4271dde7106ce49523f4cbec0f3490e421422ce99b757501ad071a7ca5b3c8d4b11
7
- data.tar.gz: 9d62ee628d19ca5432641421810b0a3d50473b1e158e7538763f052e2e1d8fa2c4d792b7e061dc8b015ec384eeb8a8ee53711f3a75a98ccd97e8db9396711ee6
6
+ metadata.gz: d5ecbff44f07354e64419f7836c503e9fd368c7cc47fe5828e484792524e8bb0e64e2e6a896dd6d085510f7a305c1f5b7ee1e900724c4dcb0483b5aaaf48d622
7
+ data.tar.gz: 55e35b081aa779887b16eec7ceed95e5b6923be248ebde08e78ff10e2e641c39cb94f0c18ba085391d4ca72ac39d442d6b6f9f3f2283decdd590ab1a6b5e77e5
data/License.md ADDED
@@ -0,0 +1,27 @@
1
+ ---
2
+ layout: default
3
+ site-title: Fica Theme License
4
+ permalink: /License/
5
+ ---
6
+
7
+ # The MIT License (MIT)
8
+
9
+ ## Copyright (c) 2022 [Involts](https://github.com/Involts)
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in
19
+ all copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27
+ THE SOFTWARE.
data/_sass/Base.scss CHANGED
@@ -5,63 +5,112 @@ html {
5
5
  /**
6
6
  * Reset some basic elements
7
7
  */
8
- body, h1, h2, h3, h4, h5, h6,
9
- p, blockquote, pre, hr,
10
- dl, dd, ol, ul, figure {
11
- margin: 0;
12
- padding: 0;
13
-
8
+ body,
9
+ h1,
10
+ h2,
11
+ h3,
12
+ h4,
13
+ h5,
14
+ h6,
15
+ p,
16
+ blockquote,
17
+ pre,
18
+ hr,
19
+ dl,
20
+ dd,
21
+ ol,
22
+ ul,
23
+ figure {
24
+ margin: 0;
25
+ padding: 0;
14
26
  }
15
27
 
16
-
17
28
  body {
18
- font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
29
+ font: $base-font-weight #{$base-font-size}/#{$base-line-height}
30
+ $base-font-family;
19
31
  color: $text-color;
20
32
  background-color: $background-color;
21
33
  -webkit-text-size-adjust: 100%;
22
34
  -webkit-font-feature-settings: "kern" 1;
23
- -moz-font-feature-settings: "kern" 1;
24
- -o-font-feature-settings: "kern" 1;
25
- font-feature-settings: "kern" 1;
35
+ -moz-font-feature-settings: "kern" 1;
36
+ -o-font-feature-settings: "kern" 1;
37
+ font-feature-settings: "kern" 1;
26
38
  font-kerning: normal;
27
39
  display: flex;
28
40
  min-height: 100vh;
29
41
  flex-direction: column;
30
42
  overflow-wrap: break-word;
31
- }
43
+
44
+ &::-webkit-scrollbar {
45
+ width: 7px;
46
+ height: 4px;
47
+ }
48
+
49
+ &::-webkit-scrollbar-track {
50
+ background-color: $background-color;
51
+ }
52
+
53
+ &::-webkit-scrollbar-thumb {
54
+ background: $text-color;
55
+ border-radius: 4px;
56
+ }
57
+ }
32
58
 
33
59
  /**
34
60
  * Set `margin-bottom` to maintain vertical rhythm
35
61
  */
36
- h1, h2, h3, h4, h5, h6,
37
- p, blockquote, pre,
38
- ul, ol, dl, figure,
62
+ h1,
63
+ h2,
64
+ h3,
65
+ h4,
66
+ h5,
67
+ h6,
68
+ p,
69
+ blockquote,
70
+ pre,
71
+ ul,
72
+ ol,
73
+ dl,
74
+ figure,
39
75
  %vertical-rhythm {
40
- margin-bottom: $spacing-unit / 2;
76
+ margin-bottom: $spacing-unit / 2;
41
77
  }
42
78
 
43
79
  hr {
44
- margin-top: $spacing-unit;
45
- margin-bottom: $spacing-unit;
80
+ margin-top: $spacing-unit;
81
+ margin-bottom: $spacing-unit;
82
+ background: $text-color;
46
83
  }
47
84
 
48
85
  /**
49
86
  * `main` element
50
87
  */
51
88
  main {
52
- display: block;
89
+ display: block;
53
90
  /* Default value of `display` of `main` element is 'inline' in IE 11. */
54
91
  animation-name: text_trans;
55
92
  animation-duration: 1s;
56
93
  -webkit-animation-timing-function: ease-in;
57
94
  animation-timing-function: ease-in;
58
95
  @keyframes text_trans {
59
- 0% {opacity: 0%;}
60
- 20% {opacity: 20%;}
61
- 50% {opacity: 50%;}
62
- 70% {opacity: 70%;}
63
- 90% {opacity: 90%;}
64
- 100% {opacity: 100%;}
96
+ 0% {
97
+ opacity: 0%;
98
+ }
99
+ 20% {
100
+ opacity: 20%;
101
+ }
102
+ 50% {
103
+ opacity: 50%;
104
+ }
105
+ 70% {
106
+ opacity: 70%;
107
+ }
108
+ 90% {
109
+ opacity: 90%;
110
+ }
111
+ 100% {
112
+ opacity: 100%;
113
+ }
65
114
  }
66
115
  }
67
116
 
@@ -69,247 +118,280 @@ main {
69
118
  * Images
70
119
  */
71
120
  img {
72
- max-width: 100%;
73
- vertical-align: middle;
121
+ max-width: 100%;
122
+ vertical-align: middle;
74
123
  }
75
124
 
76
-
77
-
78
125
  /**
79
126
  * Figures
80
127
  */
81
128
  figure > img {
82
- display: block;
129
+ display: block;
83
130
  }
84
131
 
85
132
  figcaption {
86
- font-size: $small-font-size;
133
+ font-size: $small-font-size;
87
134
  }
88
135
 
89
-
90
-
91
136
  /**
92
137
  * Lists
93
138
  */
94
- ul, ol {
95
- margin-left: $spacing-unit;
139
+ ul,
140
+ ol {
141
+ margin-left: $spacing-unit;
96
142
  }
97
143
 
98
144
  li {
99
- > ul,
100
- > ol {
101
- margin-bottom: 0;
102
- }
145
+ > ul,
146
+ > ol {
147
+ margin-bottom: 0;
148
+ }
103
149
  }
104
150
 
105
-
106
-
107
151
  /**
108
152
  * Headings
109
153
  */
110
- h2, h3, h4, h5, h6 {
111
- font-weight: 650;
112
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
154
+ h2,
155
+ h3,
156
+ h4,
157
+ h5,
158
+ h6 {
159
+ font-weight: 650;
160
+ font-family: $base-font-family;
113
161
  }
114
162
 
115
163
  h1 {
116
- font-weight: 700;
117
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
118
- font-size: 35px;
164
+ font-weight: 700;
165
+ font-family: $base-font-family;
166
+ font-size: 35px;
119
167
  }
120
168
 
121
-
122
169
  /**
123
170
  * Links
124
171
  */
125
172
  a {
126
- color: $link-base-color;
127
- text-decoration: none;
128
- transition: $transition-links;
129
-
130
- &:visited {
131
- color: $link-visited-color;
132
- }
133
-
134
- &:hover {
135
- color: $link-hover-color;
136
- text-decoration: none;
137
- }
138
- }
173
+ color: $link-base-color;
174
+ text-decoration: none;
175
+ transition: $transition-links;
139
176
 
177
+ &:visited {
178
+ color: $link-visited-color;
179
+ }
180
+
181
+ &:hover {
182
+ color: $link-hover-color;
183
+ text-decoration: none;
184
+ }
185
+ }
140
186
 
141
187
  /**
142
188
  * Blockquotes
143
189
  */
144
190
  blockquote {
145
- color: $blockquote-text-color;
146
- border-left: 4px solid $border-color-01;
147
- padding-left: $spacing-unit / 2;
148
- @include relative-font-size(1.125);
149
- font-style: italic;
150
-
151
- > :last-child {
152
- margin-bottom: 0;
153
- }
154
-
155
- i, em {
156
- font-style: normal;
157
- }
158
- }
159
-
191
+ color: $blockquote-text-color;
192
+ border-left: 4px solid $border-color-01;
193
+ padding-left: $spacing-unit / 2;
194
+ @include relative-font-size(1.125);
195
+ font-style: italic;
196
+
197
+ > :last-child {
198
+ margin-bottom: 0;
199
+ }
160
200
 
201
+ i,
202
+ em {
203
+ font-style: normal;
204
+ }
205
+ }
161
206
 
162
207
  /**
163
208
  * Code formatting
164
209
  */
165
210
  pre,
166
211
  code {
167
- font-family: $code-font-family;
168
- font-size: 0.9375em;
169
- border: 1px solid $border-color-01;
170
- border-radius: 4px;
171
- background-color: $code-background-color;
212
+ font-family: $code-font-family;
213
+ font-size: 0.9375em;
214
+ border: 1px solid $border-color-01;
215
+ border-radius: 4px;
216
+ background-color: $code-background-color;
217
+
218
+ &::-webkit-scrollbar {
219
+ width: 7px;
220
+ height: 9px;
221
+ }
222
+
223
+ &::-webkit-scrollbar-track {
224
+ background-color: $code-background-color;
225
+ }
226
+
227
+ &::-webkit-scrollbar-thumb {
228
+ background: $text-color;
229
+ border-radius: 4px;
230
+ }
172
231
  }
173
232
 
174
233
  code {
175
- padding: 1px 5px;
234
+ padding: 1px 5px;
176
235
  }
177
236
 
178
237
  pre {
179
- padding: 8px 12px;
180
- overflow-x: auto;
181
-
182
- > code {
183
- border: 0;
184
- padding-right: 0;
185
- padding-left: 0;
186
- }
238
+ padding: 8px 12px;
239
+ overflow-x: auto;
240
+
241
+ > code {
242
+ border: 0;
243
+ padding-right: 0;
244
+ padding-left: 0;
245
+ }
187
246
  }
188
247
 
189
248
  .highlight {
190
- border-radius: 3px;
191
- background: $code-background-color;
192
- @extend %vertical-rhythm;
249
+ border-radius: 3px;
250
+ background: $code-background-color;
251
+ @extend %vertical-rhythm;
193
252
 
194
- .highlighter-rouge & {
195
- background: $code-background-color;
196
- }
253
+ .highlighter-rouge & {
254
+ background: $code-background-color;
255
+ }
197
256
  }
198
257
 
199
-
200
-
201
258
  /**
202
259
  * Wrapper
203
260
  */
204
261
  .wrapper {
205
- max-width: calc(#{$content-width} - (#{$spacing-unit}));
206
- margin-right: auto;
207
- margin-left: auto;
208
- padding-right: $spacing-unit / 2;
209
- padding-left: $spacing-unit / 2;
210
- @extend %clearfix;
211
-
212
- @media screen and (min-width: $on-large) {
213
- max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
214
- padding-right: $spacing-unit;
215
- padding-left: $spacing-unit;
216
- }
262
+ max-width: calc(#{$content-width} - (#{$spacing-unit}));
263
+ margin-right: auto;
264
+ margin-left: auto;
265
+ padding-right: $spacing-unit / 2;
266
+ padding-left: $spacing-unit / 2;
267
+ @extend %clearfix;
268
+
269
+ @media screen and (min-width: $on-large) {
270
+ max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
271
+ padding-right: $spacing-unit;
272
+ padding-left: $spacing-unit;
273
+ }
217
274
  }
218
275
 
219
276
  .wrapper_header {
220
- padding-left: 20px;
221
- padding-right: auto;
222
- @extend %clearfix;
223
- @media screen and (min-width: $on-medium) {
224
- padding-right: 70px;
225
- padding-left: 70px;
226
- }
277
+ padding-left: 20px;
278
+ padding-right: auto;
279
+ @extend %clearfix;
280
+ @media screen and (min-width: $on-medium) {
281
+ padding-right: 70px;
282
+ padding-left: 70px;
283
+ }
227
284
  }
228
285
 
229
286
  .wrapper_footer {
230
- max-width: calc(#{$content-width} - (#{$spacing-unit}));
231
- margin-right: auto;
232
- margin-left: auto;
233
- padding-right: $spacing-unit / 2;
234
- padding-left: $spacing-unit / 2;
235
- @extend %clearfix;
236
-
237
- @media screen and (min-width: $on-large) {
238
- max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
239
- padding-right: $spacing-unit;
240
- padding-left: $spacing-unit;
241
- }
287
+ max-width: calc(#{$content-width} - (#{$spacing-unit}));
288
+ margin-right: auto;
289
+ margin-left: auto;
290
+ padding-right: $spacing-unit / 2;
291
+ padding-left: $spacing-unit / 2;
292
+ @extend %clearfix;
293
+
294
+ @media screen and (min-width: $on-large) {
295
+ max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
296
+ padding-right: $spacing-unit;
297
+ padding-left: $spacing-unit;
298
+ }
242
299
  }
243
300
 
244
-
245
-
246
301
  /**
247
302
  * Clearfix
248
303
  */
249
304
  %clearfix:after {
250
- content: "";
251
- display: table;
252
- clear: both;
305
+ content: "";
306
+ display: table;
307
+ clear: both;
253
308
  }
254
309
 
255
-
256
-
257
310
  /**
258
311
  * Icons
259
312
  */
260
313
 
261
314
  .stackoverflow {
262
- color: #f66a0a;
315
+ color: #f66a0a;
263
316
  }
264
317
 
265
318
  .youtube {
266
- color: #dd0505;
319
+ color: #dd0505;
267
320
  }
268
321
 
269
322
  .github {
270
- color: #f9f9f9
323
+ color: #f9f9f9;
271
324
  }
272
325
 
273
326
  .svg-icon {
274
- width: 16px;
275
- height: 16px;
276
- display: inline-block;
277
- fill: currentColor;
278
- padding: 5px 3px 2px 5px;
279
- vertical-align: text-bottom;
327
+ width: 16px;
328
+ height: 16px;
329
+ display: inline-block;
330
+ fill: currentColor;
331
+ padding: 5px 3px 2px 5px;
332
+ vertical-align: text-bottom;
280
333
  }
281
334
 
282
-
283
335
  /**
284
336
  * Tables
285
337
  */
286
338
  table {
287
- margin-bottom: $spacing-unit;
288
- width: 100%;
289
- text-align: $table-text-align;
290
- color: $table-text-color;
291
- border-collapse: collapse;
292
- border: 1px solid $table-border-color;
293
- tr {
294
- &:nth-child(even) {
295
- background-color: $table-zebra-color;
296
- }
297
- }
298
- th, td {
299
- padding: ($spacing-unit / 3) ($spacing-unit / 2);
300
- }
301
- th {
302
- background-color: $table-header-bg-color;
303
- border: 1px solid $table-header-border;
304
- }
305
- td {
306
- border: 1px solid $table-border-color;
307
- }
308
-
309
- @include media-query($on-laptop) {
310
- display: block;
311
- overflow-x: auto;
312
- -webkit-overflow-scrolling: touch;
313
- -ms-overflow-style: -ms-autohiding-scrollbar;
314
- }
315
- }
339
+ margin-bottom: $spacing-unit;
340
+ width: 100%;
341
+ text-align: $table-text-align;
342
+ color: $table-text-color;
343
+ border-collapse: collapse;
344
+ border: 1px solid $table-border-color;
345
+
346
+ &::-webkit-scrollbar {
347
+ width: 7px;
348
+ height: 9px;
349
+ }
350
+
351
+ &::-webkit-scrollbar-track {
352
+ background-color: $code-background-color;
353
+ }
354
+
355
+ &::-webkit-scrollbar-thumb {
356
+ background: $text-color;
357
+ border-radius: 4px;
358
+ }
359
+ tr {
360
+ &:nth-child(even) {
361
+ background-color: $table-zebra-color;
362
+ }
363
+ }
364
+ th,
365
+ td {
366
+ padding: ($spacing-unit / 3) ($spacing-unit / 2);
367
+ }
368
+ th {
369
+ background-color: $table-header-bg-color;
370
+ border: 1px solid $table-header-border;
371
+ }
372
+ td {
373
+ border: 1px solid $table-border-color;
374
+ }
375
+
376
+ @include media-query($on-laptop) {
377
+ display: block;
378
+ overflow-x: auto;
379
+ -webkit-overflow-scrolling: touch;
380
+ -ms-overflow-style: -ms-autohiding-scrollbar;
381
+ }
382
+ }
383
+ dl {
384
+ padding: 0;
385
+
386
+ dt {
387
+ padding: 0;
388
+ margin-top: 1rem;
389
+ font-size: $base-font-size;
390
+ font-weight: 690;
391
+ }
392
+
393
+ dd {
394
+ margin-inline-start: 40px;
395
+ }
396
+ }
397
+
@@ -1,4 +1,5 @@
1
1
  //Main Color Scheme
2
+ // $background-color: #191919 !default;
2
3
  $background-color: #2b2b2b !default;
3
4
  $text-color: #ffffff !default;
4
5
 
@@ -6,9 +7,11 @@ $text-color: #ffffff !default;
6
7
  $site-title-color: #ffffff !default;
7
8
  $site-header-bg: darken($background-color, 5%) !default;
8
9
 
9
- $btn-bg-color: #525252 !default;
10
- $btn-color-hover: #353535 !default;
11
- $btn-text-hover-color: darken($text-color, 20%) !default;
10
+ // $btn-bg-color: #525252 !default;
11
+ // $btn-color-hover: #353535 !default;
12
+ $btn-bg-color: lighten($background-color, 5%) !default;
13
+ $btn-color-hover: lighten($background-color, 5%) !default;
14
+ $btn-text-hover-color: darken($text-color, 50%) !default;
12
15
 
13
16
  $header-bg-color: #80ffd4 !default;
14
17
  $home-header-title-color: darken($background-color, 3%) !default;
@@ -42,6 +45,7 @@ $table-border-color: darken($background-color, 100%) !default;
42
45
 
43
46
  $footer-bg-color: darken($background-color, 2%) !default;
44
47
 
48
+
45
49
  .highlight .hll { background-color: #515151 }
46
50
  /*.highlight { background: #2d2d2d; color: #f2f0ec }*/
47
51
  .highlight { background: #1A1F35; color: #f2f0ec }
@@ -6,7 +6,7 @@
6
6
  $transition-btn: color 0.2s, background-color 0.2s, border-color 0.2s;
7
7
  $transition-links: color 0.3s;
8
8
 
9
- $base-font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Segoe UI Symbol", "Segoe UI Emoji", "Apple Color Emoji", Roboto, Helvetica, Arial, sans-serif !default;
9
+ $base-font-family: 'Roboto', sans-serif !default;
10
10
  $code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
11
11
  $base-font-size: 16px !default;
12
12
  $base-font-weight: 400 !default;
data/_sass/Layout.scss CHANGED
@@ -19,7 +19,7 @@
19
19
  letter-spacing: -1px;
20
20
  margin-bottom: 0;
21
21
  float: left;
22
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
22
+ font-family: $base-font-family;
23
23
 
24
24
  @include media-query($on-palm) {
25
25
  padding-right: 45px;
@@ -65,7 +65,7 @@
65
65
  color: $header-bg-color;
66
66
  text-align: center;
67
67
  font-weight: bold;
68
- font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
68
+ font-family: $base-font-family;
69
69
  padding-bottom: 7px;
70
70
  }
71
71
 
@@ -76,8 +76,7 @@
76
76
  color: $header-bg-color;
77
77
  text-align: center;
78
78
  font-weight: lighter;
79
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
80
- position: relative;
79
+ font-family: $base-font-family;
81
80
  animation-name: des_app;
82
81
  animation-duration: 1s;
83
82
  -webkit-animation-timing-function: linear;
@@ -91,42 +90,8 @@
91
90
  100% {opacity: 100%;}
92
91
  }
93
92
  }
94
-
95
- //Side Navigation
96
- .sidenav {
97
- width: 130px;
98
- z-index: 1;
99
- top: 110px;
100
- left: 15px;
101
- background: $menu-bdr-color;
102
- overflow-x: hidden;
103
- padding: 8px 0;
104
- border-radius: 5%;
105
- }
106
-
107
- .sidenav a {
108
- display: list-item;
109
- list-style-type: disc;
110
- list-style-position: inside;
111
- padding: 6px 8px 6px 16px;
112
- font-size: 17px;
113
- color: $link-base-color;
114
- display: block;
115
- }
116
-
117
- .sidenav a:hover {
118
- color: $link-hover-color;
119
- }
120
-
121
- @media screen and (max-height: 450px) {
122
- .sidenav {
123
- padding-top: 15px;
124
- }
125
- .sidenav a {
126
- font-size: 18px;
127
- }
128
- }
129
-
93
+
94
+ // Site.nav
130
95
  .site-nav {
131
96
  position: absolute;
132
97
  top: 9px;
@@ -182,7 +147,7 @@
182
147
  display: block;
183
148
  padding: 5px 10px;
184
149
 
185
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
150
+ font-family: $base-font-family;
186
151
 
187
152
  // Gaps between nav items, but not on the last one
188
153
  &:not(:last-child) {
@@ -224,7 +189,6 @@
224
189
  }
225
190
  }
226
191
  }
227
-
228
192
  /**
229
193
  * Site footer
230
194
  */
@@ -233,37 +197,6 @@
233
197
  padding: $spacing-unit 0;
234
198
  }
235
199
 
236
- .footer-heading {
237
- @include relative-font-size(1.125);
238
- margin-bottom: $spacing-unit / 2;
239
- }
240
-
241
- .footer-col {
242
- margin-bottom: $spacing-unit / 2;
243
- }
244
-
245
- .footer-col-1,
246
- .footer-col-2 {
247
- width: calc(50% - (#{$spacing-unit} / 2));
248
- }
249
-
250
- .footer-col-3 {
251
- width: calc(100% - (#{$spacing-unit} / 2));
252
- }
253
-
254
- @media screen and (min-width: $on-large) {
255
- .footer-col-1 {
256
- width: calc(35% - (#{$spacing-unit} / 2));
257
- }
258
-
259
- .footer-col-2 {
260
- width: calc(20% - (#{$spacing-unit} / 2));
261
- }
262
-
263
- .footer-col-3 {
264
- width: calc(45% - (#{$spacing-unit} / 2));
265
- }
266
- }
267
200
  .Links_footer {
268
201
  list-style: none;
269
202
  color: $link-base-color;
@@ -327,13 +260,14 @@
327
260
  text-decoration: none;
328
261
  }
329
262
  }
330
-
263
+
331
264
  @media screen and (min-width: $on-medium) {
332
265
  .footer-col-wrapper {
333
266
  display: flex;
334
267
  }
335
268
 
336
269
  .footer-col {
270
+ margin-bottom: $spacing-unit / 2;
337
271
  width: calc(28% - (#{$spacing-unit} / 2));
338
272
  padding: 0 ($spacing-unit / 2);
339
273
 
@@ -348,6 +282,7 @@
348
282
  }
349
283
  }
350
284
  .footer-middle {
285
+ margin-bottom: $spacing-unit / 2;
351
286
  width: calc(35% - (#{$spacing-unit} / 2));
352
287
  padding: 0 ($spacing-unit / 2);
353
288
 
@@ -362,6 +297,7 @@
362
297
  }
363
298
  }
364
299
  .footer-last {
300
+ margin-bottom: $spacing-unit / 2;
365
301
  width: calc(35% - (#{$spacing-unit} / 2));
366
302
  padding: 0 ($spacing-unit / 2);
367
303
 
@@ -503,7 +439,7 @@
503
439
  }
504
440
 
505
441
  .btn {
506
- padding: 7px 25px;
442
+ padding: 8px 25px;
507
443
  border: none;
508
444
  border-radius: 5px;
509
445
  cursor: pointer;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-fica
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Involts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-27 00:00:00.000000000 Z
11
+ date: 2022-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -80,6 +80,7 @@ extensions: []
80
80
  extra_rdoc_files: []
81
81
  files:
82
82
  - LICENSE.txt
83
+ - License.md
83
84
  - README.md
84
85
  - _includes/Custom-Head.html
85
86
  - _includes/Footer.html