jekyll-theme-fica 0.1.2 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,9 +6,9 @@
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
- $base-font-size: 16px !default;
11
+ $base-font-size: 17px !default;
12
12
  $base-font-weight: 400 !default;
13
13
  $small-font-size: $base-font-size * 0.875 !default;
14
14
  $base-line-height: 1.5 !default;
data/_sass/Layout.scss CHANGED
@@ -13,13 +13,23 @@
13
13
  position: relative;
14
14
  }
15
15
 
16
+ .site-header-home {
17
+ background-color: $home-header-title-color;
18
+ border-top: 5px solid $home-header-title-color;
19
+ border-bottom: 5px solid $home-header-title-color;
20
+ min-height: $spacing-unit * 1.865;
21
+ line-height: $base-line-height * $base-font-size * 2.25;
22
+
23
+ // Positioning context for the mobile navigation icon
24
+ position: relative;
25
+ }
16
26
  .site-title {
17
27
  @include relative-font-size(1.625);
18
28
  font-weight: 690;
19
29
  letter-spacing: -1px;
20
30
  margin-bottom: 0;
21
31
  float: left;
22
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
32
+ font-family: $base-font-family;
23
33
 
24
34
  @include media-query($on-palm) {
25
35
  padding-right: 45px;
@@ -27,7 +37,7 @@
27
37
 
28
38
  &,
29
39
  &:visited {
30
- color: $site-title-color;
40
+ color: $text-color;
31
41
  }
32
42
 
33
43
  &:hover {
@@ -52,7 +62,7 @@
52
62
  }
53
63
  .page-header {
54
64
  border-top: 10px solid $home-header-title-color;
55
- color: $site-title-color;
65
+ color: $text-color;
56
66
  background-color: $home-header-title-color;
57
67
  border-bottom: 5px solid $home-header-title-color;
58
68
  padding-bottom: 10px;
@@ -65,7 +75,7 @@
65
75
  color: $header-bg-color;
66
76
  text-align: center;
67
77
  font-weight: bold;
68
- font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
78
+ font-family: $base-font-family;
69
79
  padding-bottom: 7px;
70
80
  }
71
81
 
@@ -76,8 +86,7 @@
76
86
  color: $header-bg-color;
77
87
  text-align: center;
78
88
  font-weight: lighter;
79
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
80
- position: relative;
89
+ font-family: $base-font-family;
81
90
  animation-name: des_app;
82
91
  animation-duration: 1s;
83
92
  -webkit-animation-timing-function: linear;
@@ -91,42 +100,8 @@
91
100
  100% {opacity: 100%;}
92
101
  }
93
102
  }
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
-
103
+
104
+ // Site.nav
130
105
  .site-nav {
131
106
  position: absolute;
132
107
  top: 9px;
@@ -182,7 +157,7 @@
182
157
  display: block;
183
158
  padding: 5px 10px;
184
159
 
185
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
160
+ font-family: $base-font-family;
186
161
 
187
162
  // Gaps between nav items, but not on the last one
188
163
  &:not(:last-child) {
@@ -200,6 +175,7 @@
200
175
  float: right;
201
176
  border: none;
202
177
  background-color: inherit;
178
+
203
179
 
204
180
  label[for="nav-trigger"] {
205
181
  display: none;
@@ -224,7 +200,6 @@
224
200
  }
225
201
  }
226
202
  }
227
-
228
203
  /**
229
204
  * Site footer
230
205
  */
@@ -233,37 +208,6 @@
233
208
  padding: $spacing-unit 0;
234
209
  }
235
210
 
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
211
  .Links_footer {
268
212
  list-style: none;
269
213
  color: $link-base-color;
@@ -278,11 +222,11 @@
278
222
  padding-left: 0;
279
223
  padding-bottom: 4px;
280
224
  font-size: larger;
281
- color: #f0ffff;
225
+ color: $text-color;
282
226
  }
283
227
 
284
228
  &:first-child:hover {
285
- color: #f0ffff;
229
+ color: $text-color;
286
230
  }
287
231
 
288
232
  &:last-child {
@@ -299,7 +243,7 @@
299
243
  }
300
244
  .Product_footer {
301
245
  list-style: none;
302
- color: #f0ffff;
246
+ color: $text-color;
303
247
  width: calc(100% - (#{$spacing-unit} / 2));
304
248
  padding: 0 ($spacing-unit / 2);
305
249
 
@@ -308,12 +252,12 @@
308
252
  padding-left: 0;
309
253
  padding-bottom: 1px;
310
254
  font-size: 0.6cm;
311
- color: #f0ffff;
255
+ color: $text-color;
312
256
  font-weight: 900;
313
257
  }
314
258
 
315
259
  &:last-child:hover {
316
- color: #f0ffff;
260
+ color: $text-color;
317
261
  }
318
262
 
319
263
  &:last-child {
@@ -323,17 +267,18 @@
323
267
  }
324
268
 
325
269
  &:hover {
326
- color: #f0ffff;
270
+ color: $text-color;
327
271
  text-decoration: none;
328
272
  }
329
273
  }
330
-
274
+
331
275
  @media screen and (min-width: $on-medium) {
332
276
  .footer-col-wrapper {
333
277
  display: flex;
334
278
  }
335
279
 
336
280
  .footer-col {
281
+ margin-bottom: $spacing-unit / 2;
337
282
  width: calc(28% - (#{$spacing-unit} / 2));
338
283
  padding: 0 ($spacing-unit / 2);
339
284
 
@@ -348,6 +293,7 @@
348
293
  }
349
294
  }
350
295
  .footer-middle {
296
+ margin-bottom: $spacing-unit / 2;
351
297
  width: calc(35% - (#{$spacing-unit} / 2));
352
298
  padding: 0 ($spacing-unit / 2);
353
299
 
@@ -362,6 +308,7 @@
362
308
  }
363
309
  }
364
310
  .footer-last {
311
+ margin-bottom: $spacing-unit / 2;
365
312
  width: calc(35% - (#{$spacing-unit} / 2));
366
313
  padding: 0 ($spacing-unit / 2);
367
314
 
@@ -404,7 +351,7 @@
404
351
 
405
352
  .post-meta {
406
353
  font-size: $small-font-size;
407
- color: $site-title-color;
354
+ color: $text-color;
408
355
  }
409
356
 
410
357
  .post-link {
@@ -485,7 +432,7 @@
485
432
  border: 1px solid transparent;
486
433
 
487
434
  &.pager-edge {
488
- color: $border-color-01;
435
+ color: $code-background-color;
489
436
  border: 1px dashed;
490
437
  }
491
438
  }
@@ -503,7 +450,7 @@
503
450
  }
504
451
 
505
452
  .btn {
506
- padding: 7px 25px;
453
+ padding: 8px 25px;
507
454
  border: none;
508
455
  border-radius: 5px;
509
456
  cursor: pointer;
@@ -523,4 +470,5 @@
523
470
  background-color: $btn-color-hover;
524
471
  border-color: $btn-color-hover;
525
472
  }
526
- }
473
+ }
474
+
@@ -0,0 +1,269 @@
1
+ //Main Color Scheme
2
+ // $background-color: #191919 !default;
3
+ // $background-color: #2b2b2b !default; Default Black theme color
4
+ //Basic Settings
5
+ $background-color: #1d2127 !default;
6
+ $text-color: #ffffff !default;
7
+
8
+ //Site Header
9
+ $header-link-color: darken($text-color, 40%) !default;
10
+ $site-header-bg: darken($background-color, 5%) !default;
11
+
12
+ // Site Home Banner
13
+ $header-bg-color: #80ffd4 !default;
14
+ $home-header-title-color: darken($background-color, 3%) !default;
15
+
16
+ //Site Nav
17
+ $menu-bdr-color: darken($background-color, 6%) !default;
18
+ $menu-color: $text-color !default;
19
+ $menu-bg-color-chae: darken($background-color, 6%) !default;
20
+
21
+ //Site Footer
22
+ $footer-bg-color: darken($background-color, 2%) !default;
23
+
24
+ // Site Scroll
25
+ $scroll_bar_bg_color: darken($text-color, 10%) !default;
26
+
27
+ // $btn-bg-color: #525252 !default;
28
+ // $btn-color-hover: #353535 !default;
29
+ $btn-bg-color: lighten($background-color, 8%) !default;
30
+ $btn-color-hover: darken($btn-bg-color, 5%) !default;
31
+ $btn-text-hover-color: darken($text-color, 50%) !default;
32
+
33
+ $code-background-color: darken($background-color, 3%) !default;
34
+ $code-text-color: #cfcc13 !default;
35
+ $blockquote-text-color: darken($text-color, 30%) !default;
36
+
37
+ $link-base-color: #80ffd4 !default;
38
+ $link-visited-color: darken($link-base-color, 15%) !default;
39
+ $link-hover-color: darken(#80ffd4, 40%) !default;
40
+
41
+ $table-text-color: $text-color !default;
42
+ $table-zebra-color: darken($background-color, 2%) !default;
43
+ $table-header-bg-color: darken($background-color, 3%) !default;
44
+ $table-header-border: darken($background-color, 10%) !default;
45
+ $table-border-color: darken($background-color, 100%) !default;
46
+
47
+ $Github: #f0f6fc !default;
48
+
49
+ .highlight .hll {
50
+ background-color: #515151;
51
+ }
52
+ /*.highlight { background: #2d2d2d; color: #f2f0ec }*/
53
+ .highlight {
54
+ background: #1a1f35;
55
+ color: #f2f0ec;
56
+ }
57
+ .highlight .c {
58
+ color: #747369;
59
+ } /* Comment */
60
+ .highlight .err {
61
+ color: #f2777a;
62
+ } /* Error */
63
+ .highlight .k {
64
+ color: #cc99cc;
65
+ } /* Keyword */
66
+ .highlight .l {
67
+ color: #f99157;
68
+ } /* Literal */
69
+ .highlight .n {
70
+ color: #f2f0ec;
71
+ } /* Name */
72
+ .highlight .o {
73
+ color: #66cccc;
74
+ } /* Operator */
75
+ .highlight .p {
76
+ color: #f2f0ec;
77
+ } /* Punctuation */
78
+ .highlight .ch {
79
+ color: #747369;
80
+ } /* Comment.Hashbang */
81
+ .highlight .cm {
82
+ color: #747369;
83
+ } /* Comment.Multiline */
84
+ .highlight .cp {
85
+ color: #747369;
86
+ } /* Comment.Preproc */
87
+ .highlight .cpf {
88
+ color: #747369;
89
+ } /* Comment.PreprocFile */
90
+ .highlight .c1 {
91
+ color: #747369;
92
+ } /* Comment.Single */
93
+ .highlight .cs {
94
+ color: #747369;
95
+ } /* Comment.Special */
96
+ .highlight .gd {
97
+ color: #f2777a;
98
+ } /* Generic.Deleted */
99
+ .highlight .ge {
100
+ font-style: italic;
101
+ } /* Generic.Emph */
102
+ .highlight .gh {
103
+ color: #f2f0ec;
104
+ font-weight: bold;
105
+ } /* Generic.Heading */
106
+ .highlight .gi {
107
+ color: #99cc99;
108
+ } /* Generic.Inserted */
109
+ .highlight .gp {
110
+ color: #747369;
111
+ font-weight: bold;
112
+ } /* Generic.Prompt */
113
+ .highlight .gs {
114
+ font-weight: bold;
115
+ } /* Generic.Strong */
116
+ .highlight .gu {
117
+ color: #66cccc;
118
+ font-weight: bold;
119
+ } /* Generic.Subheading */
120
+ .highlight .kc {
121
+ color: #cc99cc;
122
+ } /* Keyword.Constant */
123
+ .highlight .kd {
124
+ color: #cc99cc;
125
+ } /* Keyword.Declaration */
126
+ .highlight .kn {
127
+ color: #66cccc;
128
+ } /* Keyword.Namespace */
129
+ .highlight .kp {
130
+ color: #cc99cc;
131
+ } /* Keyword.Pseudo */
132
+ .highlight .kr {
133
+ color: #cc99cc;
134
+ } /* Keyword.Reserved */
135
+ .highlight .kt {
136
+ color: #ffcc66;
137
+ } /* Keyword.Type */
138
+ .highlight .ld {
139
+ color: #99cc99;
140
+ } /* Literal.Date */
141
+ .highlight .m {
142
+ color: #f99157;
143
+ } /* Literal.Number */
144
+ .highlight .s {
145
+ color: #99cc99;
146
+ } /* Literal.String */
147
+ .highlight .na {
148
+ color: #6699cc;
149
+ } /* Name.Attribute */
150
+ .highlight .nb {
151
+ color: #f2f0ec;
152
+ } /* Name.Builtin */
153
+ .highlight .nc {
154
+ color: #ffcc66;
155
+ } /* Name.Class */
156
+ .highlight .no {
157
+ color: #f2777a;
158
+ } /* Name.Constant */
159
+ .highlight .nd {
160
+ color: #66cccc;
161
+ } /* Name.Decorator */
162
+ .highlight .ni {
163
+ color: #f2f0ec;
164
+ } /* Name.Entity */
165
+ .highlight .ne {
166
+ color: #f2777a;
167
+ } /* Name.Exception */
168
+ .highlight .nf {
169
+ color: #6699cc;
170
+ } /* Name.Function */
171
+ .highlight .nl {
172
+ color: #f2f0ec;
173
+ } /* Name.Label */
174
+ .highlight .nn {
175
+ color: #ffcc66;
176
+ } /* Name.Namespace */
177
+ .highlight .nx {
178
+ color: #6699cc;
179
+ } /* Name.Other */
180
+ .highlight .py {
181
+ color: #f2f0ec;
182
+ } /* Name.Property */
183
+ .highlight .nt {
184
+ color: #66cccc;
185
+ } /* Name.Tag */
186
+ .highlight .nv {
187
+ color: #f2777a;
188
+ } /* Name.Variable */
189
+ .highlight .ow {
190
+ color: #66cccc;
191
+ } /* Operator.Word */
192
+ .highlight .w {
193
+ color: #f2f0ec;
194
+ } /* Text.Whitespace */
195
+ .highlight .mb {
196
+ color: #f99157;
197
+ } /* Literal.Number.Bin */
198
+ .highlight .mf {
199
+ color: #f99157;
200
+ } /* Literal.Number.Float */
201
+ .highlight .mh {
202
+ color: #f99157;
203
+ } /* Literal.Number.Hex */
204
+ .highlight .mi {
205
+ color: #f99157;
206
+ } /* Literal.Number.Integer */
207
+ .highlight .mo {
208
+ color: #f99157;
209
+ } /* Literal.Number.Oct */
210
+ .highlight .sa {
211
+ color: #99cc99;
212
+ } /* Literal.String.Affix */
213
+ .highlight .sb {
214
+ color: #99cc99;
215
+ } /* Literal.String.Backtick */
216
+ .highlight .sc {
217
+ color: #f2f0ec;
218
+ } /* Literal.String.Char */
219
+ .highlight .dl {
220
+ color: #99cc99;
221
+ } /* Literal.String.Delimiter */
222
+ .highlight .sd {
223
+ color: #747369;
224
+ } /* Literal.String.Doc */
225
+ .highlight .s2 {
226
+ color: #99cc99;
227
+ } /* Literal.String.Double */
228
+ .highlight .se {
229
+ color: #f99157;
230
+ } /* Literal.String.Escape */
231
+ .highlight .sh {
232
+ color: #99cc99;
233
+ } /* Literal.String.Heredoc */
234
+ .highlight .si {
235
+ color: #f99157;
236
+ } /* Literal.String.Interpol */
237
+ .highlight .sx {
238
+ color: #99cc99;
239
+ } /* Literal.String.Other */
240
+ .highlight .sr {
241
+ color: #99cc99;
242
+ } /* Literal.String.Regex */
243
+ .highlight .s1 {
244
+ color: #99cc99;
245
+ } /* Literal.String.Single */
246
+ .highlight .ss {
247
+ color: #99cc99;
248
+ } /* Literal.String.Symbol */
249
+ .highlight .bp {
250
+ color: #f2f0ec;
251
+ } /* Name.Builtin.Pseudo */
252
+ .highlight .fm {
253
+ color: #6699cc;
254
+ } /* Name.Function.Magic */
255
+ .highlight .vc {
256
+ color: #f2777a;
257
+ } /* Name.Variable.Class */
258
+ .highlight .vg {
259
+ color: #f2777a;
260
+ } /* Name.Variable.Global */
261
+ .highlight .vi {
262
+ color: #f2777a;
263
+ } /* Name.Variable.Instance */
264
+ .highlight .vm {
265
+ color: #f2777a;
266
+ } /* Name.Variable.Magic */
267
+ .highlight .il {
268
+ color: #f99157;
269
+ } /* Literal.Number.Integer.Long */