aivesoft-jekyll-theme 1.0.1

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 (40) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +261 -0
  4. data/_includes/disqus_comments.html +20 -0
  5. data/_includes/footer.html +32 -0
  6. data/_includes/google-analytics.html +9 -0
  7. data/_includes/head.html +12 -0
  8. data/_includes/header.html +89 -0
  9. data/_includes/social.html +19 -0
  10. data/_layouts/default.html +20 -0
  11. data/_layouts/home.html +60 -0
  12. data/_layouts/page.html +14 -0
  13. data/_layouts/post.html +41 -0
  14. data/_sass/aivesoft-jekyll-theme/_base.scss +259 -0
  15. data/_sass/aivesoft-jekyll-theme/_layout.scss +565 -0
  16. data/_sass/aivesoft-jekyll-theme/_syntax-highlighting.scss +71 -0
  17. data/_sass/aivesoft-jekyll-theme.scss +58 -0
  18. data/assets/css/fontawesome.all.min.css +5 -0
  19. data/assets/css/style.scss +5 -0
  20. data/assets/images/appstore.png +0 -0
  21. data/assets/images/logo_transparent.png +0 -0
  22. data/assets/images/playstore.png +0 -0
  23. data/assets/images/screenshot.png +0 -0
  24. data/assets/images/social-icons.svg +41 -0
  25. data/assets/webfonts/fa-brands-400.eot +0 -0
  26. data/assets/webfonts/fa-brands-400.svg +3496 -0
  27. data/assets/webfonts/fa-brands-400.ttf +0 -0
  28. data/assets/webfonts/fa-brands-400.woff +0 -0
  29. data/assets/webfonts/fa-brands-400.woff2 +0 -0
  30. data/assets/webfonts/fa-regular-400.eot +0 -0
  31. data/assets/webfonts/fa-regular-400.svg +803 -0
  32. data/assets/webfonts/fa-regular-400.ttf +0 -0
  33. data/assets/webfonts/fa-regular-400.woff +0 -0
  34. data/assets/webfonts/fa-regular-400.woff2 +0 -0
  35. data/assets/webfonts/fa-solid-900.eot +0 -0
  36. data/assets/webfonts/fa-solid-900.svg +4667 -0
  37. data/assets/webfonts/fa-solid-900.ttf +0 -0
  38. data/assets/webfonts/fa-solid-900.woff +0 -0
  39. data/assets/webfonts/fa-solid-900.woff2 +0 -0
  40. metadata +144 -0
@@ -0,0 +1,565 @@
1
+ /**
2
+ * Site header
3
+ */
4
+ .site-header {
5
+ // border-top: 5px solid $grey-color-dark;
6
+ // border-bottom: 1px solid $grey-color-light;
7
+ min-height: $spacing-unit * 1.865;
8
+ // line-height: $base-line-height * $base-font-size * 2.25;
9
+
10
+ // Positioning context for the mobile navigation icon
11
+ position: relative;
12
+ }
13
+
14
+ .top-bar {
15
+ height: $spacing-unit * 1.365;
16
+ line-height: $spacing-unit * 1.365;
17
+ border-bottom: 1px solid $grey-color-light;
18
+ background-color: $grey-color-extra-light;
19
+
20
+ .contact {
21
+ a {
22
+ color: $grey-color;
23
+
24
+ &:hover {
25
+ text-decoration: none;
26
+ }
27
+ }
28
+ }
29
+
30
+ .social-links {
31
+ float: right;
32
+ }
33
+
34
+ &:after {
35
+ clear: both;
36
+ }
37
+ }
38
+
39
+ .logo-wrapper {
40
+ padding: $spacing-unit * 0.865 0 $spacing-unit * 0.865 0;
41
+ text-align: center;
42
+
43
+ .logo-text {
44
+ font-size: 18pt;
45
+ color: $text-color;
46
+ @include relative-font-size(2.382);
47
+ }
48
+ a {
49
+ &:hover {
50
+ text-decoration: none;
51
+ }
52
+ }
53
+ img {
54
+ width: 50%;
55
+ height: auto;
56
+ margin: 0 auto;
57
+ display: block;
58
+ }
59
+
60
+ @media screen and (min-width: $on-medium) {
61
+ padding: $spacing-unit * 1.865 0 $spacing-unit * 1.865 0;
62
+
63
+ img {
64
+ width: 50%;
65
+ height: auto;
66
+ margin: 0 auto;
67
+ display: block;
68
+ }
69
+ }
70
+ }
71
+
72
+ .site-nav {
73
+ border-top: 1px solid $grey-color-light;
74
+ border-bottom: 1px solid $grey-color-light;
75
+ text-align: center;
76
+
77
+ .page-link {
78
+ display: inline-block;
79
+ color: $grey-color;
80
+ padding: ($spacing-unit / 2);
81
+
82
+ &:hover {
83
+ color: $grey-color-dark;
84
+ text-decoration: none;
85
+ }
86
+
87
+ margin-left: 20px;
88
+
89
+ &:first-child {
90
+ padding-left: 0;
91
+ margin-left: 0;
92
+ }
93
+
94
+ &:last-child {
95
+ padding-right: 0;
96
+ margin-right: 0;
97
+ }
98
+ }
99
+
100
+ @media screen and (min-width: $on-medium) {
101
+ // position: static;
102
+ // float: right;
103
+ // border: none;
104
+ // background-color: inherit;
105
+
106
+ // label[for="nav-trigger"] {
107
+ // display: none;
108
+ // }
109
+
110
+ // .menu-icon {
111
+ // display: none;
112
+ // }
113
+
114
+ // input ~ .trigger {
115
+ // display: block;
116
+ // }
117
+
118
+ // .page-link {
119
+ // display: inline;
120
+ // padding: 0;
121
+
122
+ // &:not(:last-child) {
123
+ // margin-right: 20px;
124
+ // }
125
+ // margin-left: auto;
126
+ // }
127
+ }
128
+ }
129
+
130
+ /**
131
+ * Site footer
132
+ */
133
+ .site-footer {
134
+ border-top: 1px solid $grey-color-light;
135
+ padding: $spacing-unit 0;
136
+ }
137
+
138
+ .footer-heading {
139
+ @include relative-font-size(1.125);
140
+ margin-bottom: $spacing-unit / 2;
141
+ }
142
+
143
+ .contact-list,
144
+ .social-media-list {
145
+ list-style: none;
146
+ margin-left: 0;
147
+ }
148
+
149
+ .footer-col-wrapper {
150
+ @include relative-font-size(0.9375);
151
+ color: $grey-color;
152
+ margin-left: -$spacing-unit / 2;
153
+ @extend %clearfix;
154
+ }
155
+
156
+ .footer-col {
157
+ width: -webkit-calc(100% - (#{$spacing-unit} / 2));
158
+ width: calc(100% - (#{$spacing-unit} / 2));
159
+ margin-bottom: $spacing-unit / 2;
160
+ padding-left: $spacing-unit / 2;
161
+ }
162
+
163
+ .footer-col-1,
164
+ .footer-col-2 {
165
+ width: -webkit-calc(50% - (#{$spacing-unit} / 2));
166
+ width: calc(50% - (#{$spacing-unit} / 2));
167
+ }
168
+
169
+ .footer-col-3 {
170
+ width: -webkit-calc(100% - (#{$spacing-unit} / 2));
171
+ width: calc(100% - (#{$spacing-unit} / 2));
172
+ }
173
+
174
+ @media screen and (min-width: $on-large) {
175
+ .footer-col-1 {
176
+ width: -webkit-calc(35% - (#{$spacing-unit} / 2));
177
+ width: calc(35% - (#{$spacing-unit} / 2));
178
+ }
179
+
180
+ .footer-col-2 {
181
+ width: -webkit-calc(20% - (#{$spacing-unit} / 2));
182
+ width: calc(20% - (#{$spacing-unit} / 2));
183
+ }
184
+
185
+ .footer-col-3 {
186
+ width: -webkit-calc(45% - (#{$spacing-unit} / 2));
187
+ width: calc(45% - (#{$spacing-unit} / 2));
188
+ }
189
+ }
190
+
191
+ @media screen and (min-width: $on-medium) {
192
+ .footer-col {
193
+ float: left;
194
+ }
195
+ }
196
+
197
+ /**
198
+ * Page content
199
+ */
200
+ .page-content {
201
+ padding: $spacing-unit 0;
202
+ flex: 1 0 auto;
203
+ }
204
+
205
+ .page-heading {
206
+ @include relative-font-size(2);
207
+ }
208
+
209
+ .post-list-heading {
210
+ @include relative-font-size(1.75);
211
+ }
212
+
213
+ .post-list {
214
+ margin-left: 0;
215
+ list-style: none;
216
+
217
+ >li {
218
+ // margin-bottom: $spacing-unit;
219
+ padding: $spacing-unit 0;
220
+ border-bottom: 1px solid $grey-color-light;
221
+ }
222
+
223
+ .post-content {
224
+ @include relative-font-size(1);
225
+ margin-top: $spacing-unit * 0.191;
226
+ }
227
+ }
228
+
229
+ .post-meta {
230
+ font-size: $small-font-size;
231
+ color: $grey-color;
232
+ margin-bottom: $spacing-unit * 0.382;
233
+
234
+ i {
235
+ color: $brand-color;
236
+ }
237
+ }
238
+
239
+ .post-title {
240
+ .post-link {
241
+ display: block;
242
+ color: $text-color;
243
+ @include relative-font-size(1.5);
244
+
245
+ &:hover {
246
+ text-decoration: none;
247
+ }
248
+ }
249
+
250
+ margin: 0 0 $spacing-unit * 0.382 0;
251
+ }
252
+
253
+ .post-store {
254
+ display: flex;
255
+ margin-top: $spacing-unit * 0.382;
256
+
257
+ a {
258
+ flex: 1;
259
+ margin: $spacing-unit * 0.382;
260
+ }
261
+
262
+ @media screen and (min-width: $on-medium) {
263
+ a {
264
+ margin: $spacing-unit * 0.382 $spacing-unit * 2.618 $spacing-unit * 0.382 $spacing-unit * 2.618;
265
+ }
266
+ }
267
+ }
268
+
269
+ /**
270
+ * Posts
271
+ */
272
+ .post {
273
+ .post-store {
274
+ margin-bottom: $spacing-unit;
275
+ }
276
+ .post-header {
277
+ margin-bottom: $spacing-unit;
278
+ }
279
+ .post-landing-image {
280
+ margin: 0 0 $spacing-unit * 0.618 0;
281
+ }
282
+
283
+ .post-title,
284
+ .post-content h1 {
285
+ @include relative-font-size(2.625);
286
+ letter-spacing: -1px;
287
+ line-height: 1;
288
+
289
+ @media screen and (min-width: $on-large) {
290
+ @include relative-font-size(2.625);
291
+ }
292
+ }
293
+
294
+ .post-content {
295
+ margin-bottom: $spacing-unit;
296
+
297
+ h2 {
298
+ @include relative-font-size(1.75);
299
+
300
+ @media screen and (min-width: $on-large) {
301
+ @include relative-font-size(2);
302
+ }
303
+ }
304
+
305
+ h3 {
306
+ @include relative-font-size(1.375);
307
+
308
+ @media screen and (min-width: $on-large) {
309
+ @include relative-font-size(1.625);
310
+ }
311
+ }
312
+
313
+ h4 {
314
+ @include relative-font-size(1.125);
315
+
316
+ @media screen and (min-width: $on-large) {
317
+ @include relative-font-size(1.25);
318
+ }
319
+ }
320
+ }
321
+
322
+ .social-media-list {
323
+ display: table;
324
+ margin: 0 auto;
325
+
326
+ li {
327
+ float: left;
328
+ margin: 0 5px;
329
+
330
+ &:first-of-type {
331
+ margin-left: 0;
332
+ }
333
+
334
+ &:last-of-type {
335
+ margin-right: 0;
336
+ }
337
+
338
+ a {
339
+ display: block;
340
+ padding: $spacing-unit / 4;
341
+ border: 1px solid $grey-color-light;
342
+ }
343
+
344
+ &:hover .svg-icon {
345
+ fill: currentColor;
346
+ }
347
+ }
348
+ }
349
+ }
350
+
351
+
352
+ /**
353
+ * Grid helpers
354
+ */
355
+ @media screen and (min-width: $on-large) {
356
+ .one-half {
357
+ width: -webkit-calc(50% - (#{$spacing-unit} / 2));
358
+ width: calc(50% - (#{$spacing-unit} / 2));
359
+ }
360
+ }
361
+
362
+
363
+ /**
364
+ * Etc
365
+ */
366
+ .brand-bg a i {
367
+ display: inline-block;
368
+ text-decoration: none;
369
+ text-align: center;
370
+ margin-right: 5px;
371
+ color: #fff;
372
+ font-size: 14px;
373
+ -webkit-transition: background 2s ease;
374
+ -moz-transition: background 2s ease;
375
+ -o-transition: background 2s ease;
376
+ -ms-transition: background 2s ease;
377
+ transition: background 2s ease;
378
+ }
379
+ .brand-bg a i:hover {
380
+ -webkit-transition: background 2s ease;
381
+ -moz-transition: background 2s ease;
382
+ -o-transition: background 2s ease;
383
+ -ms-transition: background 2s ease;
384
+ transition: background 2s ease;
385
+ }
386
+ .brand-bg a.facebook i {
387
+ background: #3280e7;
388
+ }
389
+ .brand-bg a.facebook i:hover {
390
+ background: #134fa0;
391
+ }
392
+ .brand-bg a.twitter i {
393
+ background: #32c8de;
394
+ }
395
+ .brand-bg a.twitter i:hover {
396
+ background: #188392;
397
+ }
398
+ .brand-bg a.telegram i {
399
+ background: #32c8de;
400
+ }
401
+ .brand-bg a.telegram i:hover {
402
+ background: #188392;
403
+ }
404
+ .brand-bg a.google-plus i {
405
+ background: #f96f4a;
406
+ }
407
+ .brand-bg a.google-plus i:hover {
408
+ background: #eb6440;
409
+ }
410
+ .brand-bg a.linkedin i {
411
+ background: #729fda;
412
+ }
413
+ .brand-bg a.linkedin i:hover {
414
+ background: #3069b6;
415
+ }
416
+ .brand-bg a.keybase i {
417
+ background: #729fda;
418
+ }
419
+ .brand-bg a.keybase i:hover {
420
+ background: #3069b6;
421
+ }
422
+ .brand-bg a.microdotblog i {
423
+ background: #f8a841;
424
+ }
425
+ .brand-bg a.microdotblog i:hover {
426
+ background: #cc7607;
427
+ }
428
+ .brand-bg a.pinterest i {
429
+ background: #ed5441;
430
+ }
431
+ .brand-bg a.pinterest i:hover {
432
+ background: #b72411;
433
+ }
434
+ .brand-bg a.dropbox i {
435
+ background: #32c8de;
436
+ }
437
+ .brand-bg a.dropbox i:hover {
438
+ background: #188392;
439
+ }
440
+ .brand-bg a.bitcoin i {
441
+ background: #f8a841;
442
+ }
443
+ .brand-bg a.bitcoin i:hover {
444
+ background: #cc7607;
445
+ }
446
+ .brand-bg a.foursquare i {
447
+ background: #22bed4;
448
+ }
449
+ .brand-bg a.foursquare i:hover {
450
+ background: #146f7c;
451
+ }
452
+ .brand-bg a.flickr i {
453
+ background: #ff61e7;
454
+ }
455
+ .brand-bg a.flickr i:hover {
456
+ background: #fa00d4;
457
+ }
458
+ .brand-bg a.github i {
459
+ background: #666666;
460
+ }
461
+ .brand-bg a.github i:hover {
462
+ background: #333333;
463
+ }
464
+ .brand-bg a.instagram i {
465
+ background: #d6917a;
466
+ }
467
+ .brand-bg a.instagram i:hover {
468
+ background: #b35637;
469
+ }
470
+ .brand-bg a.skype i {
471
+ background: #32c8de;
472
+ }
473
+ .brand-bg a.skype i:hover {
474
+ background: #188392;
475
+ }
476
+ .brand-bg a.tumblr i {
477
+ background: #84a1c8;
478
+ }
479
+ .brand-bg a.tumblr i:hover {
480
+ background: #476d9f;
481
+ }
482
+ .brand-bg a.vimeo i {
483
+ background: #32c8de;
484
+ }
485
+ .brand-bg a.vimeo i:hover {
486
+ background: #188392;
487
+ }
488
+ .brand-bg a.dribbble i {
489
+ background: #ff2edf;
490
+ }
491
+ .brand-bg a.dribbble i:hover {
492
+ background: #c700a9;
493
+ }
494
+ .brand-bg a.youtube i {
495
+ background: #ed5441;
496
+ }
497
+ .brand-bg a.youtube i:hover {
498
+ background: #b72411;
499
+ }
500
+ .brand-bg a.youtube_channel i {
501
+ background: #ed5441;
502
+ }
503
+ .brand-bg a.youtube_channel i:hover {
504
+ background: #b72411;
505
+ }
506
+ .brand-bg a.email i {
507
+ background: #32c8de;
508
+ }
509
+ .brand-bg a.email i:hover {
510
+ background: #188392;
511
+ }
512
+ .brand-bg a.rss i {
513
+ background: #d6917a;
514
+ }
515
+ .brand-bg a.rss i:hover {
516
+ background: #b35637;
517
+ }
518
+ .brand-bg a.mastodon i {
519
+ background: #3280e7;
520
+ }
521
+ .brand-bg a.mastodon i:hover {
522
+ background: #134fa0;
523
+ }
524
+
525
+ /* Circle */
526
+ .circle-1 {
527
+ display: inline-block;
528
+ height: 20px;
529
+ width: 20px;
530
+ line-height: 20px;
531
+ text-align: center;
532
+ border-radius: 100%;
533
+ }
534
+ .circle-2 {
535
+ display: inline-block;
536
+ height: 25px;
537
+ width: 25px;
538
+ line-height: 25px;
539
+ text-align: center;
540
+ border-radius: 100%;
541
+ }
542
+ .circle-3 {
543
+ display: inline-block;
544
+ height: 35px;
545
+ width: 35px;
546
+ line-height: 35px;
547
+ text-align: center;
548
+ border-radius: 100%;
549
+ }
550
+ .circle-4 {
551
+ display: inline-block;
552
+ height: 50px;
553
+ width: 50px;
554
+ line-height: 50px;
555
+ text-align: center;
556
+ border-radius: 100%;
557
+ }
558
+ .circle-5 {
559
+ display: inline-block;
560
+ height: 70px;
561
+ width: 70px;
562
+ line-height: 70px;
563
+ text-align: center;
564
+ border-radius: 100%;
565
+ }
@@ -0,0 +1,71 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+ .highlight {
5
+ background: #fff;
6
+ @extend %vertical-rhythm;
7
+
8
+ .highlighter-rouge & {
9
+ background: #eef;
10
+ }
11
+
12
+ .c { color: #998; font-style: italic } // Comment
13
+ .err { color: #a61717; background-color: #e3d2d2 } // Error
14
+ .k { font-weight: bold } // Keyword
15
+ .o { font-weight: bold } // Operator
16
+ .cm { color: #998; font-style: italic } // Comment.Multiline
17
+ .cp { color: #999; font-weight: bold } // Comment.Preproc
18
+ .c1 { color: #998; font-style: italic } // Comment.Single
19
+ .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
20
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
21
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
22
+ .ge { font-style: italic } // Generic.Emph
23
+ .gr { color: #a00 } // Generic.Error
24
+ .gh { color: #999 } // Generic.Heading
25
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
26
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
27
+ .go { color: #888 } // Generic.Output
28
+ .gp { color: #555 } // Generic.Prompt
29
+ .gs { font-weight: bold } // Generic.Strong
30
+ .gu { color: #aaa } // Generic.Subheading
31
+ .gt { color: #a00 } // Generic.Traceback
32
+ .kc { font-weight: bold } // Keyword.Constant
33
+ .kd { font-weight: bold } // Keyword.Declaration
34
+ .kp { font-weight: bold } // Keyword.Pseudo
35
+ .kr { font-weight: bold } // Keyword.Reserved
36
+ .kt { color: #458; font-weight: bold } // Keyword.Type
37
+ .m { color: #099 } // Literal.Number
38
+ .s { color: #d14 } // Literal.String
39
+ .na { color: #008080 } // Name.Attribute
40
+ .nb { color: #0086B3 } // Name.Builtin
41
+ .nc { color: #458; font-weight: bold } // Name.Class
42
+ .no { color: #008080 } // Name.Constant
43
+ .ni { color: #800080 } // Name.Entity
44
+ .ne { color: #900; font-weight: bold } // Name.Exception
45
+ .nf { color: #900; font-weight: bold } // Name.Function
46
+ .nn { color: #555 } // Name.Namespace
47
+ .nt { color: #000080 } // Name.Tag
48
+ .nv { color: #008080 } // Name.Variable
49
+ .ow { font-weight: bold } // Operator.Word
50
+ .w { color: #bbb } // Text.Whitespace
51
+ .mf { color: #099 } // Literal.Number.Float
52
+ .mh { color: #099 } // Literal.Number.Hex
53
+ .mi { color: #099 } // Literal.Number.Integer
54
+ .mo { color: #099 } // Literal.Number.Oct
55
+ .sb { color: #d14 } // Literal.String.Backtick
56
+ .sc { color: #d14 } // Literal.String.Char
57
+ .sd { color: #d14 } // Literal.String.Doc
58
+ .s2 { color: #d14 } // Literal.String.Double
59
+ .se { color: #d14 } // Literal.String.Escape
60
+ .sh { color: #d14 } // Literal.String.Heredoc
61
+ .si { color: #d14 } // Literal.String.Interpol
62
+ .sx { color: #d14 } // Literal.String.Other
63
+ .sr { color: #009926 } // Literal.String.Regex
64
+ .s1 { color: #d14 } // Literal.String.Single
65
+ .ss { color: #990073 } // Literal.String.Symbol
66
+ .bp { color: #999 } // Name.Builtin.Pseudo
67
+ .vc { color: #008080 } // Name.Variable.Class
68
+ .vg { color: #008080 } // Name.Variable.Global
69
+ .vi { color: #008080 } // Name.Variable.Instance
70
+ .il { color: #099 } // Literal.Number.Integer.Long
71
+ }
@@ -0,0 +1,58 @@
1
+ @charset "utf-8";
2
+
3
+ // Define defaults for each variable.
4
+
5
+ $base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
6
+ $base-font-size: 16px !default;
7
+ $base-font-weight: 400 !default;
8
+ $small-font-size: $base-font-size * 0.875 !default;
9
+ $base-line-height: 1.5 !default;
10
+
11
+ $spacing-unit: 30px !default;
12
+
13
+ $text-color: #111 !default;
14
+ $background-color: #fdfdfd !default;
15
+ $brand-color: #22bed4 !default;
16
+
17
+ $grey-color: #888888 !default;
18
+ $grey-color-light: lighten($grey-color, 42%) !default;
19
+ $grey-color-extra-light: lighten($grey-color, 45%) !default;
20
+ $grey-color-dark: darken($grey-color, 15%) !default;
21
+ $orange-color: #f66a0a !default;
22
+ $table-text-align: left !default;
23
+ $white: #ffffff;
24
+
25
+ // Width of the content area
26
+ $content-width: 800px !default;
27
+
28
+ $on-palm: 600px !default;
29
+ $on-laptop: 800px !default;
30
+
31
+ $on-medium: $on-palm !default;
32
+ $on-large: $on-laptop !default;
33
+
34
+ // Use media queries like this:
35
+ // @include media-query($on-palm) {
36
+ // .wrapper {
37
+ // padding-right: $spacing-unit / 2;
38
+ // padding-left: $spacing-unit / 2;
39
+ // }
40
+ // }
41
+ // Notice the following mixin uses max-width, in a deprecated, desktop-first
42
+ // approach, whereas media queries used elsewhere now use min-width.
43
+ @mixin media-query($device) {
44
+ @media screen and (max-width: $device) {
45
+ @content;
46
+ }
47
+ }
48
+
49
+ @mixin relative-font-size($ratio) {
50
+ font-size: $base-font-size * $ratio;
51
+ }
52
+
53
+ // Import partials.
54
+ @import
55
+ "aivesoft-jekyll-theme/base",
56
+ "aivesoft-jekyll-theme/layout",
57
+ "aivesoft-jekyll-theme/syntax-highlighting"
58
+ ;