lone-wolf-theme 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +25 -0
  3. data/LICENSE +21 -0
  4. data/README.md +43 -0
  5. data/_data/blog.yml +21 -0
  6. data/_data/nav.yml +39 -0
  7. data/_includes/ads.html +1 -0
  8. data/_includes/analytics-providers/custom.html +3 -0
  9. data/_includes/analytics-providers/google-gtag.html +9 -0
  10. data/_includes/analytics.html +8 -0
  11. data/_includes/archive-list.html +33 -0
  12. data/_includes/archive-single.html +41 -0
  13. data/_includes/blog-post-sidebar.html +37 -0
  14. data/_includes/comments-providers/custom.html +3 -0
  15. data/_includes/comments-providers/disqus.html +17 -0
  16. data/_includes/comments-providers/scripts.html +8 -0
  17. data/_includes/comments.html +8 -0
  18. data/_includes/footer.html +49 -0
  19. data/_includes/head.html +13 -0
  20. data/_includes/head/favicon.html +13 -0
  21. data/_includes/head/styles.html +3 -0
  22. data/_includes/header.html +31 -0
  23. data/_includes/home-action-btn.html +24 -0
  24. data/_includes/scripts.html +21 -0
  25. data/_includes/search-providers/google-search.html +30 -0
  26. data/_includes/search-providers/scripts.html +7 -0
  27. data/_includes/search-providers/search_form.html +12 -0
  28. data/_includes/social-share.html +7 -0
  29. data/_includes/toc.html +95 -0
  30. data/_layouts/compress.html +10 -0
  31. data/_layouts/default.html +25 -0
  32. data/_layouts/home.html +70 -0
  33. data/_layouts/list.html +11 -0
  34. data/_layouts/page.html +10 -0
  35. data/_layouts/post.html +100 -0
  36. data/_sass/_bootstrap-social.scss +93 -0
  37. data/_sass/_lone-wolf-theme.scss +8 -0
  38. data/_sass/animations/_animate.scss +3607 -0
  39. data/_sass/bootstrap/scss/_alert.scss +51 -0
  40. data/_sass/bootstrap/scss/_badge.scss +54 -0
  41. data/_sass/bootstrap/scss/_breadcrumb.scss +41 -0
  42. data/_sass/bootstrap/scss/_button-group.scss +163 -0
  43. data/_sass/bootstrap/scss/_buttons.scss +137 -0
  44. data/_sass/bootstrap/scss/_card.scss +289 -0
  45. data/_sass/bootstrap/scss/_carousel.scss +197 -0
  46. data/_sass/bootstrap/scss/_close.scss +41 -0
  47. data/_sass/bootstrap/scss/_code.scss +48 -0
  48. data/_sass/bootstrap/scss/_custom-forms.scss +507 -0
  49. data/_sass/bootstrap/scss/_dropdown.scss +191 -0
  50. data/_sass/bootstrap/scss/_forms.scss +330 -0
  51. data/_sass/bootstrap/scss/_functions.scss +86 -0
  52. data/_sass/bootstrap/scss/_grid.scss +52 -0
  53. data/_sass/bootstrap/scss/_images.scss +42 -0
  54. data/_sass/bootstrap/scss/_input-group.scss +193 -0
  55. data/_sass/bootstrap/scss/_jumbotron.scss +17 -0
  56. data/_sass/bootstrap/scss/_list-group.scss +149 -0
  57. data/_sass/bootstrap/scss/_media.scss +8 -0
  58. data/_sass/bootstrap/scss/_mixins.scss +47 -0
  59. data/_sass/bootstrap/scss/_modal.scss +229 -0
  60. data/_sass/bootstrap/scss/_nav.scss +120 -0
  61. data/_sass/bootstrap/scss/_navbar.scss +294 -0
  62. data/_sass/bootstrap/scss/_pagination.scss +73 -0
  63. data/_sass/bootstrap/scss/_popover.scss +171 -0
  64. data/_sass/bootstrap/scss/_print.scss +141 -0
  65. data/_sass/bootstrap/scss/_progress.scss +43 -0
  66. data/_sass/bootstrap/scss/_reboot.scss +483 -0
  67. data/_sass/bootstrap/scss/_root.scss +19 -0
  68. data/_sass/bootstrap/scss/_spinners.scss +55 -0
  69. data/_sass/bootstrap/scss/_tables.scss +185 -0
  70. data/_sass/bootstrap/scss/_toasts.scss +44 -0
  71. data/_sass/bootstrap/scss/_tooltip.scss +115 -0
  72. data/_sass/bootstrap/scss/_transitions.scss +20 -0
  73. data/_sass/bootstrap/scss/_type.scss +125 -0
  74. data/_sass/bootstrap/scss/_utilities.scss +17 -0
  75. data/_sass/bootstrap/scss/_variables.scss +1123 -0
  76. data/_sass/bootstrap/scss/bootstrap-grid.scss +29 -0
  77. data/_sass/bootstrap/scss/bootstrap-reboot.scss +12 -0
  78. data/_sass/bootstrap/scss/bootstrap.scss +44 -0
  79. data/_sass/bootstrap/scss/mixins/_alert.scss +13 -0
  80. data/_sass/bootstrap/scss/mixins/_background-variant.scss +21 -0
  81. data/_sass/bootstrap/scss/mixins/_badge.scss +17 -0
  82. data/_sass/bootstrap/scss/mixins/_border-radius.scss +63 -0
  83. data/_sass/bootstrap/scss/mixins/_box-shadow.scss +20 -0
  84. data/_sass/bootstrap/scss/mixins/_breakpoints.scss +123 -0
  85. data/_sass/bootstrap/scss/mixins/_buttons.scss +107 -0
  86. data/_sass/bootstrap/scss/mixins/_caret.scss +62 -0
  87. data/_sass/bootstrap/scss/mixins/_clearfix.scss +7 -0
  88. data/_sass/bootstrap/scss/mixins/_deprecate.scss +10 -0
  89. data/_sass/bootstrap/scss/mixins/_float.scss +14 -0
  90. data/_sass/bootstrap/scss/mixins/_forms.scss +193 -0
  91. data/_sass/bootstrap/scss/mixins/_gradients.scss +45 -0
  92. data/_sass/bootstrap/scss/mixins/_grid-framework.scss +66 -0
  93. data/_sass/bootstrap/scss/mixins/_grid.scss +51 -0
  94. data/_sass/bootstrap/scss/mixins/_hover.scss +37 -0
  95. data/_sass/bootstrap/scss/mixins/_image.scss +36 -0
  96. data/_sass/bootstrap/scss/mixins/_list-group.scss +21 -0
  97. data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
  98. data/_sass/bootstrap/scss/mixins/_nav-divider.scss +10 -0
  99. data/_sass/bootstrap/scss/mixins/_pagination.scss +22 -0
  100. data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
  101. data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
  102. data/_sass/bootstrap/scss/mixins/_screen-reader.scss +33 -0
  103. data/_sass/bootstrap/scss/mixins/_size.scss +7 -0
  104. data/_sass/bootstrap/scss/mixins/_table-row.scss +39 -0
  105. data/_sass/bootstrap/scss/mixins/_text-emphasis.scss +16 -0
  106. data/_sass/bootstrap/scss/mixins/_text-hide.scss +11 -0
  107. data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  108. data/_sass/bootstrap/scss/mixins/_transition.scss +16 -0
  109. data/_sass/bootstrap/scss/mixins/_visibility.scss +8 -0
  110. data/_sass/bootstrap/scss/utilities/_align.scss +8 -0
  111. data/_sass/bootstrap/scss/utilities/_background.scss +19 -0
  112. data/_sass/bootstrap/scss/utilities/_borders.scss +75 -0
  113. data/_sass/bootstrap/scss/utilities/_clearfix.scss +3 -0
  114. data/_sass/bootstrap/scss/utilities/_display.scss +26 -0
  115. data/_sass/bootstrap/scss/utilities/_embed.scss +39 -0
  116. data/_sass/bootstrap/scss/utilities/_flex.scss +51 -0
  117. data/_sass/bootstrap/scss/utilities/_float.scss +11 -0
  118. data/_sass/bootstrap/scss/utilities/_overflow.scss +5 -0
  119. data/_sass/bootstrap/scss/utilities/_position.scss +32 -0
  120. data/_sass/bootstrap/scss/utilities/_screenreaders.scss +11 -0
  121. data/_sass/bootstrap/scss/utilities/_shadows.scss +6 -0
  122. data/_sass/bootstrap/scss/utilities/_sizing.scss +20 -0
  123. data/_sass/bootstrap/scss/utilities/_spacing.scss +73 -0
  124. data/_sass/bootstrap/scss/utilities/_stretched-link.scss +19 -0
  125. data/_sass/bootstrap/scss/utilities/_text.scss +72 -0
  126. data/_sass/bootstrap/scss/utilities/_visibility.scss +13 -0
  127. data/_sass/bootstrap/scss/vendor/_rfs.scss +204 -0
  128. data/_sass/bootswatch/dist/cerulean/_bootswatch.scss +103 -0
  129. data/_sass/bootswatch/dist/cerulean/_variables.scss +57 -0
  130. data/_sass/bootswatch/dist/spacelab/_bootswatch.scss +102 -0
  131. data/_sass/bootswatch/dist/spacelab/_variables.scss +63 -0
  132. data/_sass/bootswatch/dist/united/_bootswatch.scss +26 -0
  133. data/_sass/bootswatch/dist/united/_variables.scss +53 -0
  134. data/_sass/lone-wolf-theme/_default-layout.scss +24 -0
  135. data/_sass/lone-wolf-theme/_extend-bs4.scss +212 -0
  136. data/_sass/lone-wolf-theme/_override-bs4.scss +2 -0
  137. data/_sass/lone-wolf-theme/_syntax.scss +396 -0
  138. data/_sass/lone-wolf-theme/_variables.scss +24 -0
  139. data/assets/css/main.scss +16 -0
  140. data/assets/images/favicons/android-chrome-192x192.png +0 -0
  141. data/assets/images/favicons/android-chrome-512x512.png +0 -0
  142. data/assets/images/favicons/apple-touch-icon.png +0 -0
  143. data/assets/images/favicons/browserconfig.xml +9 -0
  144. data/assets/images/favicons/favicon-16x16.png +0 -0
  145. data/assets/images/favicons/favicon-32x32.png +0 -0
  146. data/assets/images/favicons/favicon.ico +0 -0
  147. data/assets/images/favicons/mstile-144x144.png +0 -0
  148. data/assets/images/favicons/mstile-150x150.png +0 -0
  149. data/assets/images/favicons/mstile-310x150.png +0 -0
  150. data/assets/images/favicons/mstile-310x310.png +0 -0
  151. data/assets/images/favicons/mstile-70x70.png +0 -0
  152. data/assets/images/favicons/safari-pinned-tab.svg +8283 -0
  153. data/assets/images/favicons/site.webmanifest +19 -0
  154. data/assets/images/lwt-logo-v1.svg +337 -0
  155. data/assets/js/_main.js +20 -0
  156. data/assets/js/bootstrap/bootstrap.min.js +7 -0
  157. data/assets/js/bootstrap/bootstrap.min.js.map +1 -0
  158. data/assets/js/main.min.js +8 -0
  159. metadata +362 -0
@@ -0,0 +1,103 @@
1
+ // Cerulean 4.3.1
2
+ // Bootswatch
3
+
4
+
5
+ @mixin btn-shadow($color){
6
+ @include gradient-y-three-colors(lighten($color, 8%), $color, 60%, darken($color, 4%));
7
+ }
8
+
9
+ $text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) !default;
10
+
11
+ // Navbar ======================================================================
12
+
13
+ .bg-primary {
14
+ @include btn-shadow($primary);
15
+ }
16
+
17
+ .bg-dark {
18
+ @include btn-shadow($blue);
19
+ }
20
+
21
+ .bg-light {
22
+ @include gradient-y-three-colors(lighten($gray-200, 8%), $gray-200, 60%, darken($gray-200, 2%));
23
+ }
24
+
25
+ .navbar-brand,
26
+ .nav-link {
27
+ text-shadow: $text-shadow
28
+ }
29
+
30
+ // Buttons =====================================================================
31
+
32
+ .btn {
33
+ text-shadow: $text-shadow
34
+ }
35
+
36
+ .btn-primary {
37
+ @include btn-shadow($primary);
38
+ }
39
+
40
+ .btn-secondary {
41
+ @include btn-shadow($secondary);
42
+ color: $gray-700;
43
+ }
44
+
45
+ .btn-success {
46
+ @include btn-shadow($success);
47
+ }
48
+
49
+ .btn-info {
50
+ @include btn-shadow($info);
51
+ }
52
+
53
+ .btn-warning {
54
+ @include btn-shadow($warning);
55
+ }
56
+
57
+ .btn-danger {
58
+ @include btn-shadow($danger);
59
+ }
60
+
61
+ .btn-light {
62
+ @include btn-shadow($light);
63
+ }
64
+
65
+ .btn-dark {
66
+ @include btn-shadow($dark);
67
+ }
68
+
69
+
70
+ // Typography ==================================================================
71
+
72
+ .text-secondary {
73
+ color: $gray-500 !important;
74
+ }
75
+
76
+ .bg-primary,
77
+ .bg-success,
78
+ .bg-info,
79
+ .bg-warning,
80
+ .bg-danger,
81
+ .bg-dark {
82
+ h1, h2, h3, h4, h5, h6 {
83
+ color: $white;
84
+ }
85
+ }
86
+
87
+ // Tables ======================================================================
88
+
89
+ // Forms =======================================================================
90
+
91
+ // Navs ========================================================================
92
+
93
+ .dropdown-menu {
94
+ .dropdown-header {
95
+ color: $gray-600;
96
+ }
97
+ }
98
+
99
+ // Indicators ==================================================================
100
+
101
+ // Progress bars ===============================================================
102
+
103
+ // Containers ==================================================================
@@ -0,0 +1,57 @@
1
+ // Cerulean 4.3.1
2
+ // Bootswatch
3
+
4
+ //
5
+ // Color system
6
+ //
7
+
8
+ $white: #fff !default;
9
+ $gray-100: #f8f9fa !default;
10
+ $gray-200: #e9ecef !default;
11
+ $gray-300: #dee2e6 !default;
12
+ $gray-400: #ced4da !default;
13
+ $gray-500: #adb5bd !default;
14
+ $gray-600: #868e96 !default;
15
+ $gray-700: #495057 !default;
16
+ $gray-800: #343a40 !default;
17
+ $gray-900: #212529 !default;
18
+ $black: #000 !default;
19
+
20
+ $blue: #033C73 !default;
21
+ $indigo: #6610f2 !default;
22
+ $purple: #6f42c1 !default;
23
+ $pink: #e83e8c !default;
24
+ $red: #C71C22 !default;
25
+ $orange: #fd7e14 !default;
26
+ $yellow: #DD5600 !default;
27
+ $green: #73A839 !default;
28
+ $teal: #20c997 !default;
29
+ $cyan: #2FA4E7 !default;
30
+
31
+ $primary: $cyan !default;
32
+ $secondary: $gray-200 !default;
33
+ $success: $green !default;
34
+ $info: $blue !default;
35
+ $warning: $yellow !default;
36
+ $danger: $red !default;
37
+ $light: $gray-100 !default;
38
+ $dark: $gray-800 !default;
39
+
40
+ // Body
41
+
42
+ $body-color: $gray-700 !default;
43
+
44
+ // Fonts
45
+
46
+ $headings-color: $cyan !default;
47
+
48
+ // Dropdowns
49
+
50
+ $dropdown-link-color: $body-color !default;
51
+ $dropdown-link-hover-color: $white !default;
52
+ $dropdown-link-hover-bg: $primary !default;
53
+
54
+ // Navbar
55
+
56
+ $navbar-dark-color: rgba($white,.8) !default;
57
+ $navbar-dark-hover-color: $white !default;
@@ -0,0 +1,102 @@
1
+ // Spacelab 4.3.1
2
+ // Bootswatch
3
+
4
+
5
+ // Variables ===================================================================
6
+
7
+ $web-font-path: "https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700" !default;
8
+ @import url($web-font-path);
9
+
10
+ @mixin btn-shadow($color){
11
+ @include gradient-y-three-colors(lighten($color, 15%), $color, 50%, darken($color, 4%));
12
+ filter: none;
13
+ border: 1px solid darken($color, 10%);
14
+ }
15
+
16
+ // Navbar ======================================================================
17
+
18
+ .navbar {
19
+
20
+ .nav-link,
21
+ .navbar-brand {
22
+ text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.1);
23
+ transition: color ease-in-out .2s;
24
+ }
25
+
26
+ &.bg-primary {
27
+ @include btn-shadow(map-get($theme-colors, "primary"));
28
+ }
29
+
30
+ &.bg-dark {
31
+ @include btn-shadow(map-get($theme-colors, "secondary"));
32
+ }
33
+
34
+ &.bg-light {
35
+ @include btn-shadow(map-get($theme-colors, "light"));
36
+
37
+ .nav-link,
38
+ .navbar-brand {
39
+ text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.1);
40
+ }
41
+
42
+ .navbar-brand {
43
+ color: $navbar-light-color;
44
+
45
+ &:hover {
46
+ color: $info;
47
+ }
48
+ }
49
+ }
50
+ }
51
+
52
+ // Buttons =====================================================================
53
+
54
+ .btn {
55
+ text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.1);
56
+
57
+ &-link {
58
+ text-shadow: none;
59
+ }
60
+ }
61
+
62
+ @each $color, $value in $theme-colors {
63
+ .btn-#{$color} {
64
+ @include btn-shadow($value);
65
+ }
66
+
67
+ .btn-#{$color}:not(.disabled):hover {
68
+ @include btn-shadow(darken($value, 4%));
69
+ }
70
+ }
71
+
72
+ [class*="btn-outline-"] {
73
+ text-shadow: none;
74
+ }
75
+
76
+ // Typography ==================================================================
77
+
78
+ // Tables ======================================================================
79
+
80
+ // Forms =======================================================================
81
+
82
+ // Navs ========================================================================
83
+
84
+ // Indicators ==================================================================
85
+
86
+ .badge {
87
+
88
+ &-secondary {
89
+ color: $white;
90
+ }
91
+ }
92
+
93
+ // Progress bars ===============================================================
94
+
95
+ // Containers ==================================================================
96
+
97
+ .card,
98
+ .list-group-item {
99
+ h1, h2, h3, h4, h5, h6 {
100
+ color: inherit;
101
+ }
102
+ }
@@ -0,0 +1,63 @@
1
+ // Spacelab 4.3.1
2
+ // Bootswatch
3
+
4
+ //
5
+ // Color system
6
+ //
7
+
8
+ $white: #fff !default;
9
+ $gray-100: #f8f9fa !default;
10
+ $gray-200: #eee !default;
11
+ $gray-300: #dee2e6 !default;
12
+ $gray-400: #ced4da !default;
13
+ $gray-500: #999 !default;
14
+ $gray-600: #777 !default;
15
+ $gray-700: #495057 !default;
16
+ $gray-800: #333 !default;
17
+ $gray-900: #2d2d2d !default;
18
+ $black: #000 !default;
19
+
20
+ $blue: #446E9B !default;
21
+ $indigo: #6610f2 !default;
22
+ $purple: #6f42c1 !default;
23
+ $pink: #e83e8c !default;
24
+ $red: #CD0200 !default;
25
+ $orange: #fd7e14 !default;
26
+ $yellow: #D47500 !default;
27
+ $green: #3CB521 !default;
28
+ $teal: #20c997 !default;
29
+ $cyan: #3399F3 !default;
30
+
31
+ $primary: $blue !default;
32
+ $secondary: $gray-500 !default;
33
+ $success: $green !default;
34
+ $info: $cyan !default;
35
+ $warning: $yellow !default;
36
+ $danger: $red !default;
37
+ $light: $gray-200 !default;
38
+ $dark: $gray-800 !default;
39
+
40
+ $yiq-contrasted-threshold: 200 !default;
41
+
42
+ // Body
43
+
44
+ $body-color: $gray-600 !default;
45
+
46
+ // Links
47
+
48
+ $link-color: $info !default;
49
+
50
+ // Fonts
51
+
52
+ $font-family-sans-serif: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
53
+
54
+ $headings-color: $gray-900 !default;
55
+
56
+ // Navbar
57
+
58
+ $navbar-dark-color: rgba($white,.75) !default;
59
+ $navbar-dark-hover-color: $white !default;
60
+
61
+ $navbar-light-color: rgba($black,.4) !default;
62
+ $navbar-light-hover-color: $info !default;
63
+ $navbar-light-active-color: $info !default;
@@ -0,0 +1,26 @@
1
+ // United 4.3.1
2
+ // Bootswatch
3
+
4
+
5
+ // Variables ===================================================================
6
+
7
+ $web-font-path: "https://fonts.googleapis.com/css?family=Ubuntu:400,700" !default;
8
+ @import url($web-font-path);
9
+
10
+ // Navbar ======================================================================
11
+
12
+ // Buttons =====================================================================
13
+
14
+ // Typography ==================================================================
15
+
16
+ // Tables ======================================================================
17
+
18
+ // Forms =======================================================================
19
+
20
+ // Navs ========================================================================
21
+
22
+ // Indicators ==================================================================
23
+
24
+ // Progress bars ===============================================================
25
+
26
+ // Containers ==================================================================
@@ -0,0 +1,53 @@
1
+ // United 4.3.1
2
+ // Bootswatch
3
+
4
+ //
5
+ // Color system
6
+ //
7
+
8
+ $white: #fff !default;
9
+ $gray-100: #f8f9fa !default;
10
+ $gray-200: #e9ecef !default;
11
+ $gray-300: #dee2e6 !default;
12
+ $gray-400: #ced4da !default;
13
+ $gray-500: #AEA79F !default;
14
+ $gray-600: #868e96 !default;
15
+ $gray-700: #495057 !default;
16
+ $gray-800: #333 !default;
17
+ $gray-900: #212529 !default;
18
+ $black: #000 !default;
19
+
20
+ $blue: #007bff !default;
21
+ $indigo: #6610f2 !default;
22
+ $purple: #772953 !default;
23
+ $pink: #e83e8c !default;
24
+ $red: #DF382C !default;
25
+ $orange: #E95420 !default;
26
+ $yellow: #EFB73E !default;
27
+ $green: #38B44A !default;
28
+ $teal: #20c997 !default;
29
+ $cyan: #17a2b8 !default;
30
+
31
+ $primary: $orange !default;
32
+ $secondary: $gray-500 !default;
33
+ $success: $green !default;
34
+ $info: $cyan !default;
35
+ $warning: $yellow !default;
36
+ $danger: $red !default;
37
+ $light: $gray-200 !default;
38
+ $dark: $purple !default;
39
+
40
+ $yiq-contrasted-threshold: 200 !default;
41
+
42
+ // Body
43
+
44
+ $body-color: $gray-800 !default;
45
+
46
+ // Fonts
47
+
48
+ $font-family-sans-serif: "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
49
+
50
+ // Tables
51
+
52
+ $table-dark-bg: $dark !default;
53
+ $table-dark-border-color: darken($dark, 5%) !default;
@@ -0,0 +1,24 @@
1
+ /*
2
+ Top level layout classes
3
+ =============================*/
4
+ html,
5
+ body {
6
+ height: 100%; // vh does not work on mobile devices
7
+ }
8
+
9
+ .page-container {
10
+ position: relative;
11
+ min-height: 100%; // vh does not work on mobile devices
12
+ }
13
+
14
+ .page-content {
15
+ padding-bottom: 1rem;
16
+ }
17
+
18
+ .page-footer {
19
+ position: absolute;
20
+ bottom: 0;
21
+ width: 100%;
22
+ height: auto;
23
+ margin-top: 2rem;
24
+ }
@@ -0,0 +1,212 @@
1
+ @import "../bootstrap/scss/variables";
2
+
3
+ h1, h2, h3, h4, h5, h6 {
4
+ margin: 2rem 0rem;
5
+ }
6
+
7
+ h2 {
8
+ @extend .border-bottom;
9
+ @extend .pb-1;
10
+ }
11
+
12
+ a h2, .card h2 {
13
+ @extend .border-0;
14
+ }
15
+
16
+ /*
17
+ home page jumbotron background
18
+ =============================*/
19
+ .home-page {
20
+ &-header {
21
+ @extend .jumbotron;
22
+ @extend .jumbotron-fluid;
23
+
24
+ /* default backgrounds */
25
+ $color-top: $primary;
26
+ $color-bottom: $light;
27
+ /* fallback for old browsers */
28
+ background: $color-bottom;
29
+ /* Chrome 10-25, Safari 5.1-6 */
30
+ background: -webkit-linear-gradient(to top, $color-bottom, $color-top);
31
+ /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
32
+ background: linear-gradient(to top, $color-bottom, $color-top);
33
+ }
34
+ }
35
+
36
+ /*
37
+ archive-posts list of blog posts
38
+ =============================*/
39
+ /* TODO
40
+ .archive-list {
41
+ &-items {
42
+
43
+ }
44
+ } */
45
+
46
+ /*
47
+ Blog post author info
48
+ ======================*/
49
+ .blog-post {
50
+ &-hero-img {
51
+ max-height: 640px;
52
+ }
53
+
54
+ &-toc {
55
+ >ul {
56
+ @extend .pt-3;
57
+ }
58
+
59
+ ul {
60
+ @extend .pl-3;
61
+ list-style: none;
62
+ }
63
+ }
64
+
65
+ &-author {
66
+ &-avatar {
67
+ width: 64px;
68
+ height: 64px;
69
+ padding: 0.15rem;
70
+
71
+ @include media-breakpoint-down(md) {
72
+ width: 32px;
73
+ height: 32px;
74
+ padding: 0.10rem;
75
+ }
76
+ }
77
+
78
+ &-name {
79
+ font-size: 1.0rem;
80
+ line-height: 1.8;
81
+ font-weight: bold;
82
+
83
+ @include media-breakpoint-down(md) {
84
+ font-size: 0.8rem;
85
+ line-height: 1.6;
86
+ font-weight: bold;
87
+ }
88
+ }
89
+
90
+ &-headline {
91
+ font-size: 0.8rem;
92
+ line-height: 1.6;
93
+ font-weight: normal;
94
+
95
+ @include media-breakpoint-down(md) {
96
+ font-size: 0.6rem;
97
+ line-height: 1.4;
98
+ font-weight: normal;
99
+ }
100
+ }
101
+
102
+ &-follow button {
103
+ font-size: 1.0rem;
104
+ padding: 4px 9px;
105
+ line-height: 1.8;
106
+
107
+ @include media-breakpoint-down(md) {
108
+ font-size: 0.8rem;
109
+ line-height: 1.6;
110
+ padding: 2px 4px;
111
+ }
112
+ }
113
+ }
114
+
115
+ &-article {
116
+ /* Tables inside blog post */
117
+ >table {
118
+ @extend .table;
119
+ @extend .table-bordered;
120
+
121
+ thead {
122
+ @extend .bg-info;
123
+
124
+ th {
125
+ @extend .p-2;
126
+ @extend .font-weight-bold;
127
+ @extend .text-white;
128
+ }
129
+ }
130
+
131
+ tbody {
132
+ td {
133
+ @extend .p-2;
134
+ }
135
+ }
136
+ }
137
+
138
+ img {
139
+ @extend .img-fluid;
140
+ @extend .shadow;
141
+ @extend .rounded;
142
+ @extend .my-2;
143
+ }
144
+
145
+ img.emoji {
146
+ @extend .img-fluid;
147
+ @extend .rounded;
148
+ @extend .my-0;
149
+ @extend .shadow-none;
150
+ }
151
+ }
152
+
153
+ &-social-share {
154
+ @extend .my-5;
155
+ @extend .py-3;
156
+ @extend .border-top;
157
+ @extend .border-bottom;
158
+ @extend .border-primary;
159
+
160
+ >h4 {
161
+ @extend .text-dark;
162
+ }
163
+
164
+ >a {
165
+ @extend .mb-1;
166
+
167
+ >span {
168
+ @extend .d-none;
169
+ @extend .d-sm-inline-block;
170
+ }
171
+ }
172
+ }
173
+
174
+ &-sidebar {
175
+ >div {
176
+ @extend .p-3;
177
+ background-color: $gray-200;
178
+
179
+ h4 {
180
+ @extend .pb-1;
181
+ @extend .border-bottom;
182
+ @extend .border-info;
183
+ }
184
+
185
+ ul {
186
+ @extend .pl-3;
187
+ @extend .pb-1;
188
+
189
+ li {
190
+ @extend .text-truncate;
191
+ }
192
+ }
193
+ }
194
+ }
195
+ }
196
+
197
+ /*
198
+ site footer decoration
199
+ ======================*/
200
+ .page-footer {
201
+ @extend .text-white;
202
+
203
+ &-owner {
204
+ @extend .py-5;
205
+ background: $gray-800;
206
+ }
207
+
208
+ &-copyright {
209
+ @extend .py-3;
210
+ background: $gray-900;
211
+ }
212
+ }