jekyll-any-theme 0.1.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 (174) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +52 -0
  4. data/_includes/api/example.html +23 -0
  5. data/_includes/api/get.html +11 -0
  6. data/_includes/api/save.html +1 -0
  7. data/_includes/components/alert.html +7 -0
  8. data/_includes/components/blockquote.html +23 -0
  9. data/_includes/components/bootstrap.html +245 -0
  10. data/_includes/components/card.html +85 -0
  11. data/_includes/components/lead.html +1 -0
  12. data/_includes/components/login.html +28 -0
  13. data/_includes/components/navbar_link.html +3 -0
  14. data/_includes/components/navbar_text.html +3 -0
  15. data/_includes/components/page_info.html +48 -0
  16. data/_includes/components/toc.html +18 -0
  17. data/_includes/filters/link_to_file.html +26 -0
  18. data/_includes/filters/unslug.html +17 -0
  19. data/_includes/page/end.html +2 -0
  20. data/_includes/page/footer.html +26 -0
  21. data/_includes/page/head.html +28 -0
  22. data/_includes/page/header.html +7 -0
  23. data/_includes/page/init.html +17 -0
  24. data/_includes/page/main.html +44 -0
  25. data/_includes/page/navbar.html +69 -0
  26. data/_includes/page/sidebar.html +6 -0
  27. data/_includes/page/top.html +27 -0
  28. data/_includes/tempus/calendar.html +26 -0
  29. data/_includes/tempus/events.html +72 -0
  30. data/_includes/tempus/next.html +73 -0
  31. data/_includes/widgets/libros.html +183 -0
  32. data/_includes/widgets/themes.html +11 -0
  33. data/_includes/widgets/toc.html +18 -0
  34. data/_layouts/default.html +8 -0
  35. data/_layouts/page.html +5 -0
  36. data/_layouts/post.html +5 -0
  37. data/_sass/_any_theme.sass +54 -0
  38. data/_sass/any_theme/_corrections.sass +71 -0
  39. data/_sass/any_theme/_headings.sass +13 -0
  40. data/_sass/any_theme/_mixins.sass +11 -0
  41. data/_sass/any_theme/_syntax_blood.scss +310 -0
  42. data/_sass/any_theme/_syntax_dark.scss +63 -0
  43. data/_sass/any_theme/_syntax_default.scss +310 -0
  44. data/_sass/any_theme/_toc.sass +4 -0
  45. data/_sass/any_theme/_widgets.sass +48 -0
  46. data/_sass/bootstrap/_alert.scss +51 -0
  47. data/_sass/bootstrap/_badge.scss +47 -0
  48. data/_sass/bootstrap/_breadcrumb.scss +38 -0
  49. data/_sass/bootstrap/_button-group.scss +166 -0
  50. data/_sass/bootstrap/_buttons.scss +143 -0
  51. data/_sass/bootstrap/_card.scss +270 -0
  52. data/_sass/bootstrap/_carousel.scss +191 -0
  53. data/_sass/bootstrap/_close.scss +34 -0
  54. data/_sass/bootstrap/_code.scss +56 -0
  55. data/_sass/bootstrap/_custom-forms.scss +297 -0
  56. data/_sass/bootstrap/_dropdown.scss +131 -0
  57. data/_sass/bootstrap/_forms.scss +333 -0
  58. data/_sass/bootstrap/_functions.scss +86 -0
  59. data/_sass/bootstrap/_grid.scss +52 -0
  60. data/_sass/bootstrap/_images.scss +42 -0
  61. data/_sass/bootstrap/_input-group.scss +159 -0
  62. data/_sass/bootstrap/_jumbotron.scss +16 -0
  63. data/_sass/bootstrap/_list-group.scss +115 -0
  64. data/_sass/bootstrap/_media.scss +8 -0
  65. data/_sass/bootstrap/_mixins.scss +42 -0
  66. data/_sass/bootstrap/_modal.scss +168 -0
  67. data/_sass/bootstrap/_nav.scss +118 -0
  68. data/_sass/bootstrap/_navbar.scss +311 -0
  69. data/_sass/bootstrap/_pagination.scss +77 -0
  70. data/_sass/bootstrap/_popover.scss +183 -0
  71. data/_sass/bootstrap/_print.scss +124 -0
  72. data/_sass/bootstrap/_progress.scss +33 -0
  73. data/_sass/bootstrap/_reboot.scss +482 -0
  74. data/_sass/bootstrap/_root.scss +19 -0
  75. data/_sass/bootstrap/_tables.scss +180 -0
  76. data/_sass/bootstrap/_tooltip.scss +115 -0
  77. data/_sass/bootstrap/_transitions.scss +36 -0
  78. data/_sass/bootstrap/_type.scss +125 -0
  79. data/_sass/bootstrap/_utilities.scss +14 -0
  80. data/_sass/bootstrap/_variables.scss +894 -0
  81. data/_sass/bootstrap/bootstrap-grid.scss +32 -0
  82. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  83. data/_sass/bootstrap/bootstrap.scss +42 -0
  84. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  85. data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
  86. data/_sass/bootstrap/mixins/_badge.scss +12 -0
  87. data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
  88. data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
  89. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  90. data/_sass/bootstrap/mixins/_buttons.scss +109 -0
  91. data/_sass/bootstrap/mixins/_caret.scss +65 -0
  92. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  93. data/_sass/bootstrap/mixins/_float.scss +11 -0
  94. data/_sass/bootstrap/mixins/_forms.scss +137 -0
  95. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  96. data/_sass/bootstrap/mixins/_grid-framework.scss +67 -0
  97. data/_sass/bootstrap/mixins/_grid.scss +52 -0
  98. data/_sass/bootstrap/mixins/_hover.scss +39 -0
  99. data/_sass/bootstrap/mixins/_image.scss +36 -0
  100. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  101. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  102. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  103. data/_sass/bootstrap/mixins/_navbar-align.scss +10 -0
  104. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  105. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  106. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  107. data/_sass/bootstrap/mixins/_screen-reader.scss +35 -0
  108. data/_sass/bootstrap/mixins/_size.scss +6 -0
  109. data/_sass/bootstrap/mixins/_table-row.scss +30 -0
  110. data/_sass/bootstrap/mixins/_text-emphasis.scss +14 -0
  111. data/_sass/bootstrap/mixins/_text-hide.scss +9 -0
  112. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  113. data/_sass/bootstrap/mixins/_transition.scss +9 -0
  114. data/_sass/bootstrap/mixins/_visibility.scss +7 -0
  115. data/_sass/bootstrap/utilities/_align.scss +8 -0
  116. data/_sass/bootstrap/utilities/_background.scss +19 -0
  117. data/_sass/bootstrap/utilities/_borders.scss +59 -0
  118. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  119. data/_sass/bootstrap/utilities/_display.scss +38 -0
  120. data/_sass/bootstrap/utilities/_embed.scss +52 -0
  121. data/_sass/bootstrap/utilities/_flex.scss +46 -0
  122. data/_sass/bootstrap/utilities/_float.scss +9 -0
  123. data/_sass/bootstrap/utilities/_position.scss +36 -0
  124. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  125. data/_sass/bootstrap/utilities/_sizing.scss +12 -0
  126. data/_sass/bootstrap/utilities/_spacing.scss +51 -0
  127. data/_sass/bootstrap/utilities/_text.scss +52 -0
  128. data/_sass/bootstrap/utilities/_visibility.scss +11 -0
  129. data/assets/css/basic_light_sans.sass +71 -0
  130. data/assets/css_no/basic_dark_sans.sass +114 -0
  131. data/assets/css_no/basic_dark_serif.sass +114 -0
  132. data/assets/css_no/basic_light_serif.sass +69 -0
  133. data/assets/css_no/bootstrap.sass +44 -0
  134. data/assets/css_no/dark_additions.sass +74 -0
  135. data/assets/css_no/dnd.sass +188 -0
  136. data/assets/css_no/gurps.sass +70 -0
  137. data/assets/css_no/minidark.sass +177 -0
  138. data/assets/css_no/minimal.sass +139 -0
  139. data/assets/css_no/roboto_dark.sass +324 -0
  140. data/assets/css_no/roboto_light.sass +275 -0
  141. data/assets/fonts/scala/fonts.scss +59 -0
  142. data/assets/fonts/scala/scala-bold-webfont.eot +0 -0
  143. data/assets/fonts/scala/scala-bold-webfont.svg +873 -0
  144. data/assets/fonts/scala/scala-bold-webfont.ttf +0 -0
  145. data/assets/fonts/scala/scala-bold-webfont.woff +0 -0
  146. data/assets/fonts/scala/scala-italic-webfont.eot +0 -0
  147. data/assets/fonts/scala/scala-italic-webfont.svg +235 -0
  148. data/assets/fonts/scala/scala-italic-webfont.ttf +0 -0
  149. data/assets/fonts/scala/scala-italic-webfont.woff +0 -0
  150. data/assets/fonts/scala/scala-webfont.eot +0 -0
  151. data/assets/fonts/scala/scala-webfont.svg +234 -0
  152. data/assets/fonts/scala/scala-webfont.ttf +0 -0
  153. data/assets/fonts/scala/scala-webfont.woff +0 -0
  154. data/assets/fonts/scala/scalasans-bold-webfont.eot +0 -0
  155. data/assets/fonts/scala/scalasans-bold-webfont.svg +244 -0
  156. data/assets/fonts/scala/scalasans-bold-webfont.ttf +0 -0
  157. data/assets/fonts/scala/scalasans-bold-webfont.woff +0 -0
  158. data/assets/fonts/scala/scalasans-webfont.eot +0 -0
  159. data/assets/fonts/scala/scalasans-webfont.svg +238 -0
  160. data/assets/fonts/scala/scalasans-webfont.ttf +0 -0
  161. data/assets/fonts/scala/scalasans-webfont.woff +0 -0
  162. data/assets/images/dnd-bg.jpg +0 -0
  163. data/assets/js/any-theme.coffee +33 -0
  164. data/assets/js/any_theme/libros.coffee +113 -0
  165. data/assets/js/any_theme/login.coffee +90 -0
  166. data/assets/js/any_theme/storage.coffee +49 -0
  167. data/assets/js/any_theme/themes.coffee +10 -0
  168. data/assets/pages/about.md +17 -0
  169. data/assets/pages/customize/css.md +22 -0
  170. data/assets/pages/customize/themes.md +17 -0
  171. data/assets/pages/docs/libros.md +17 -0
  172. data/assets/pages/docs/tempus.md +66 -0
  173. data/assets/pages/index.md +21 -0
  174. metadata +258 -0
@@ -0,0 +1,188 @@
1
+ ---
2
+ ---
3
+
4
+ // VARIABILES
5
+ // ----------------------------
6
+
7
+ // COLORS
8
+ // ----------------------------
9
+
10
+ // Base
11
+ // $black: white
12
+ // $white: black
13
+
14
+ // Body
15
+ // $body-bg: lighten(black,6%)
16
+ // $body-color: darken(white,5%)
17
+
18
+ $maroon: maroon
19
+ $gold: chocolate
20
+ $khaki: rgba(darkkhaki,.5)
21
+
22
+ // Links
23
+ $link-color: $maroon
24
+ $link-hover-color: $gold
25
+
26
+ // Colors darkened
27
+ $blue: mix(#007bff,$maroon,55%)
28
+ $indigo: mix(#6610f2,$maroon,55%)
29
+ $purple: mix(#6f42c1,$maroon,55%)
30
+ $pink: mix(#e83e8c,$maroon,55%)
31
+ $red: mix(#dc3545,$maroon,55%)
32
+ $orange: mix(#fd7e14,$maroon,55%)
33
+ $yellow: mix(#ffc107,$maroon,55%)
34
+ $green: mix(#28a745,$maroon,55%)
35
+ $teal: mix(#20c997,$maroon,55%)
36
+ $cyan: mix(#17a2b8,$maroon,55%)
37
+
38
+ // BACKGROUND
39
+ .dnd-background
40
+ background-image: url('/assets/images/dnd-bg.jpg')
41
+ background-size: 100% auto
42
+ background-position: top left
43
+ background-color: #E3C8A1
44
+
45
+ // Kbd
46
+ // $kbd-color: white
47
+
48
+ // FONTS
49
+ // ----------------------------
50
+
51
+ // Size
52
+ $font-size-base: 1.2rem
53
+ $code-font-size: 80%
54
+
55
+ // Font family
56
+ $font-family-sans-serif: 'Scala Sans SC', sans-serif
57
+ $font-family-serif: 'Scala', serif
58
+ $font-family-base: $font-family-serif
59
+ $headings-color: $maroon
60
+ // $font-family-headings-header: $font-family-serif
61
+
62
+ // Weights
63
+ // $font-weight-base: 300
64
+ $headings-font-weight: 400
65
+
66
+ // Helper
67
+ .font-sans
68
+ font-family: $font-family-sans-serif
69
+
70
+ // BLOCKQUOTES
71
+ $blockquote-small-color: lighten(black,30%)
72
+ $text-muted: lighten(black,40%)
73
+
74
+ // CODE
75
+ $code-color: brown
76
+
77
+ // CARDS
78
+ $card-bg: $khaki
79
+ $card-cap-bg: darkkhaki
80
+ $card-spacer-x: .75rem
81
+ $card-spacer-y: .75rem
82
+ $card-border-radius: 0
83
+ $card-border-width: 0
84
+ $card-border-color: black
85
+
86
+ // Helper
87
+ .card-border
88
+ border-width: 3px 0 !important
89
+
90
+ // FORMS
91
+ $custom-select-bg: rgba(white,.5)
92
+ $input-bg: rgba(white,.5)
93
+
94
+ // LISTS
95
+ $list-group-bg: rgba(white, .1)
96
+ $list-group-action-color: rgba(black,.8)
97
+ $list-group-item-padding-y: .35rem
98
+ $list-group-item-padding-x: .75rem
99
+ $component-active-bg: $maroon
100
+
101
+ // TABLES
102
+ $table-bg: transparent
103
+ $table-border-color: rgba(black,.05)
104
+ $table-accent-bg: $khaki
105
+ $table-border-width: 0
106
+ $table-cell-padding-sm: .3rem .75rem
107
+
108
+ // MODALS
109
+ $modal-header-border-color: rgba(black,.2)
110
+
111
+ // DROPDOWNS
112
+ $dropdown-bg: rgba(white,.4)
113
+ $dropdown-link-hover-bg: rgba(white,.5)
114
+ $dropdown-padding-y: 0
115
+ $dropdown-border-radius: 0
116
+
117
+ @import "any_theme"
118
+ @import "any_theme/syntax_blood"
119
+
120
+ // BODY
121
+ body
122
+ @extend .dnd-background
123
+
124
+ .modal-content
125
+ @extend .dnd-background
126
+
127
+ // HEADINGS
128
+ @include headings()
129
+ font-variant-caps: small-caps
130
+ h2
131
+ border-bottom: 2px solid $gold
132
+ @extend .d-flex
133
+
134
+ // TYPE
135
+ b
136
+ font-variant-caps: small-caps
137
+ font-size: 105%
138
+
139
+ // HEADER
140
+ header
141
+ @extend .pt-4
142
+
143
+ // MAIN
144
+ main
145
+ // Add vertical padding
146
+ @extend .py-5
147
+ // Headings
148
+ // Set a top margin
149
+ @include headings()
150
+ @extend .mt-3
151
+ // Reset to margin for first child heaings in the first row columns
152
+ .row:first-child div[class*="col"]
153
+ @include headings(1, 6, ':first-child')
154
+ @extend .mt-0
155
+
156
+ // ALERTS
157
+ @each $color, $value in $theme-colors
158
+ .alert-#{$color}
159
+ color: color-yiq($value)
160
+ background: darken($value,5%)
161
+ border-color: $value
162
+ hr
163
+ border-top-color: $value
164
+ a,
165
+ code
166
+ opacity: 0.7
167
+ color: color-yiq($value)
168
+
169
+ // TABLES
170
+ table
171
+ @extend .table-striped, .table-sm, .font-sans
172
+
173
+ .card
174
+ @extend .font-sans, .card-border
175
+
176
+ // BLOCKQUOTES
177
+ blockquote
178
+ @extend .pl-3, .m-2
179
+ border-left: ($border-width * 3) solid $maroon
180
+
181
+ // CODE HIGHLIGHT
182
+ // Set padding and background
183
+ pre.highlight
184
+ @extend .px-2, .py-1
185
+ background: rgba(white, .2)
186
+ // Prevent long code to break bootstrapper grid:
187
+ // Fix user agent stylesheet `white-space: pre`
188
+ white-space: pre-wrap
@@ -0,0 +1,70 @@
1
+ ---
2
+ ---
3
+
4
+ // VARIABILES
5
+ // ----------------------------
6
+
7
+ // COLORS
8
+ // ----------------------------
9
+
10
+ // Base
11
+ // $black: white
12
+ // $white: black
13
+
14
+ // Body
15
+ // $body-bg: lighten(black,6%)
16
+ // $body-color: darken(white,5%)
17
+
18
+ // Links
19
+ $link-color: blue
20
+ $link-hover-color: #868e96
21
+
22
+ // Kbd
23
+ // $kbd-color: white
24
+
25
+ // FONTS
26
+ // ----------------------------
27
+
28
+ // Size
29
+ $font-size-base: 1.1rem
30
+ $code-font-size: 80%
31
+
32
+ // Font family
33
+ $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif
34
+ @import url('https://fonts.googleapis.com/css?family=EB+Garamond:400,500,600,700')
35
+ $font-family-serif: 'EB Garamond', serif
36
+ $font-family-base: $font-family-serif
37
+ // $font-family-headings-header: $font-family-serif
38
+
39
+ // Weights
40
+ // $font-weight-base: 300
41
+ // $headings-font-weight: 400
42
+
43
+ @import "any_theme"
44
+ @import "any_theme/syntax_default"
45
+
46
+ // HEADER
47
+ header
48
+ @extend .pt-4
49
+
50
+ // MAIN
51
+ main
52
+ // Add vertical padding
53
+ @extend .py-5
54
+ // Headings
55
+ // Set a top margin
56
+ @include headings()
57
+ @extend .mt-3
58
+ // Reset to margin for first child heaings in the first row columns
59
+ .row:first-child div[class*="col"]
60
+ @include headings(1, 6, ':first-child')
61
+ @extend .mt-0
62
+
63
+ // CODE HIGHLIGHT
64
+ // Set padding and background
65
+ pre.highlight
66
+ @extend .px-2, .py-1
67
+ background: $gray-100
68
+ // Prevent long code to break bootstrapper grid:
69
+ // Fix user agent stylesheet `white-space: pre`
70
+ white-space: pre-wrap
@@ -0,0 +1,177 @@
1
+ ---
2
+ ---
3
+ // font
4
+ $font-size-base: 1.1rem
5
+ $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif
6
+ $font-family-serif: Georgia, Times, "Times New Roman", serif
7
+ $font-family-headings-header: $font-family-serif
8
+ $font-weight-base: 300
9
+ $headings-font-weight: 400
10
+
11
+ // INVERT
12
+ $black: white
13
+ $white: black
14
+
15
+ // Body
16
+ //
17
+ // Settings for the `<body>` element.
18
+ $body-bg: lighten(black,6%)
19
+ $body-color: darken(white,5%)
20
+
21
+ // cards
22
+ $card-bg: $body-bg
23
+
24
+ // modals
25
+ $modal-header-border-color: lighten(black,20%)
26
+
27
+ // dropdowns
28
+ $dropdown-link-color: darken(white,20%)
29
+ $dropdown-link-hover-color: $dropdown-link-color
30
+ $dropdown-link-hover-bg: lighten(black,20%)
31
+
32
+ // kbd
33
+ $kbd-color: white
34
+
35
+ // links
36
+ $link-color: dodgerblue
37
+ $link-hover-color: white
38
+
39
+ // Table
40
+ $table-border-color: lighten(black,30%)
41
+ $table-head-bg: lighten(black,20%)
42
+ $table-head-color: darken(white,30%)
43
+
44
+ /*!
45
+ * Bootstrap v4.0.0-beta.3 (https://getbootstrap.com)
46
+ * Copyright 2011-2017 The Bootstrap Authors
47
+ * Copyright 2011-2017 Twitter, Inc.
48
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
49
+ */
50
+
51
+ @import "bootstrap/functions"
52
+ @import "bootstrap/variables"
53
+ @import "bootstrap/mixins"
54
+ // @import "bootstrap/root"
55
+ @import "bootstrap/reboot"
56
+ @import "bootstrap/type"
57
+ @import "bootstrap/images"
58
+ @import "bootstrap/code"
59
+ @import "bootstrap/grid"
60
+ @import "bootstrap/tables"
61
+ @import "bootstrap/forms"
62
+ @import "bootstrap/buttons"
63
+ @import "bootstrap/transitions"
64
+ @import "bootstrap/dropdown"
65
+ @import "bootstrap/button-group"
66
+ @import "bootstrap/input-group"
67
+ @import "bootstrap/custom-forms"
68
+ @import "bootstrap/nav"
69
+ @import "bootstrap/navbar"
70
+ @import "bootstrap/card"
71
+ @import "bootstrap/breadcrumb"
72
+ @import "bootstrap/pagination"
73
+ @import "bootstrap/badge"
74
+ @import "bootstrap/jumbotron"
75
+ @import "bootstrap/alert"
76
+ @import "bootstrap/progress"
77
+ @import "bootstrap/media"
78
+ @import "bootstrap/list-group"
79
+ @import "bootstrap/close"
80
+ @import "bootstrap/modal"
81
+ @import "bootstrap/tooltip"
82
+ @import "bootstrap/popover"
83
+ @import "bootstrap/carousel"
84
+ @import "bootstrap/utilities"
85
+ @import "bootstrap/print"
86
+
87
+ //
88
+ // Headings
89
+ //
90
+ @mixin headings($from: 1, $to: 6, $condition: '', $prescope: '')
91
+ @for $i from $from through $to
92
+ #{$prescope}h#{$i}#{$condition}, #{$prescope}.h#{$i}#{$condition}
93
+ @content
94
+
95
+ $font-family-headings: $font-family-base !default
96
+
97
+ // set font family
98
+ @include headings()
99
+ font-family: $font-family-headings
100
+
101
+ $font-family-headings-header: $font-family-base !default
102
+
103
+ // Body
104
+ body
105
+ font-weight: 80%
106
+
107
+ // HEADER
108
+ header
109
+ @extend .pt-4
110
+ // Set headings font-family
111
+ @include headings()
112
+ font-family: $font-family-headings-header
113
+
114
+ // NAVBAR
115
+ .navbar-toggler
116
+ color: $navbar-light-color
117
+ border-color: $navbar-light-toggler-border-color
118
+
119
+ .navbar-toggler-icon
120
+ background-image: $navbar-light-toggler-icon-bg
121
+
122
+ // MAIN Headings
123
+ main
124
+ @extend .py-5
125
+ p
126
+ letter-spacing: .3px
127
+ @include headings()
128
+ @extend .mt-3
129
+ .row:first-child .col
130
+ @include headings(1, 6, ':first-child')
131
+ @extend .mt-0
132
+
133
+ //
134
+ // Tables
135
+ //
136
+ table
137
+ @extend .table
138
+
139
+ // Blockquote footer
140
+ blockquote
141
+ p:last-of-type
142
+ @extend .mb-0
143
+ footer
144
+ @extend .blockquote-footer
145
+
146
+ // FORMS
147
+ form
148
+ // Checkbox label with mouse pointer
149
+ .custom-checkbox,
150
+ .custom-radio
151
+ label.custom-control-label
152
+ cursor: pointer
153
+
154
+ // CARDS
155
+ // Remove top margins for `last-of-type` objects
156
+ .card
157
+ .card-title:first-of-type
158
+ @extend .mt-0
159
+ .card-body
160
+ p:last-of-type,
161
+ ul:last-of-type,
162
+ pre:last-of-type
163
+ @extend .mb-0
164
+ & ~ ul
165
+ @extend .list-group, .list-group-flush
166
+ li
167
+ @extend .list-group-item
168
+ .card-footer
169
+ p:last-of-type
170
+ @extend .mb-0
171
+
172
+ // CODE
173
+ pre.highlight
174
+ @extend .p-2
175
+
176
+ // SYNTAX HIGHLIGHT
177
+ @import "any_theme/syntax_dark"
@@ -0,0 +1,139 @@
1
+ ---
2
+ ---
3
+ // font
4
+ $font-size-base: 1.1rem
5
+ $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif
6
+ $font-family-serif: Georgia, Times, "Times New Roman", serif
7
+ $font-family-headings-header: $font-family-serif
8
+ // colors
9
+ $link-color: blue
10
+ $link-hover-color: dodgerblue
11
+
12
+ /*!
13
+ * Bootstrap v4.0.0-beta.3 (https://getbootstrap.com)
14
+ * Copyright 2011-2017 The Bootstrap Authors
15
+ * Copyright 2011-2017 Twitter, Inc.
16
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
17
+ */
18
+
19
+ @import "bootstrap/functions"
20
+ @import "bootstrap/variables"
21
+ @import "bootstrap/mixins"
22
+ // @import "bootstrap/root"
23
+ @import "bootstrap/reboot"
24
+ @import "bootstrap/type"
25
+ @import "bootstrap/images"
26
+ @import "bootstrap/code"
27
+ @import "bootstrap/grid"
28
+ @import "bootstrap/tables"
29
+ @import "bootstrap/forms"
30
+ @import "bootstrap/buttons"
31
+ @import "bootstrap/transitions"
32
+ @import "bootstrap/dropdown"
33
+ @import "bootstrap/button-group"
34
+ @import "bootstrap/input-group"
35
+ @import "bootstrap/custom-forms"
36
+ @import "bootstrap/nav"
37
+ @import "bootstrap/navbar"
38
+ @import "bootstrap/card"
39
+ @import "bootstrap/breadcrumb"
40
+ @import "bootstrap/pagination"
41
+ @import "bootstrap/badge"
42
+ @import "bootstrap/jumbotron"
43
+ @import "bootstrap/alert"
44
+ @import "bootstrap/progress"
45
+ @import "bootstrap/media"
46
+ @import "bootstrap/list-group"
47
+ @import "bootstrap/close"
48
+ @import "bootstrap/modal"
49
+ @import "bootstrap/tooltip"
50
+ @import "bootstrap/popover"
51
+ @import "bootstrap/carousel"
52
+ @import "bootstrap/utilities"
53
+ @import "bootstrap/print"
54
+
55
+ //
56
+ // Headings
57
+ //
58
+ @mixin headings($from: 1, $to: 6, $condition: '', $prescope: '')
59
+ @for $i from $from through $to
60
+ #{$prescope}h#{$i}#{$condition}, #{$prescope}.h#{$i}#{$condition}
61
+ @content
62
+
63
+ $font-family-headings: $font-family-base !default
64
+
65
+ // set font family
66
+ @include headings()
67
+ font-family: $font-family-headings
68
+
69
+ $font-family-headings-header: $font-family-base !default
70
+
71
+ // HEADER
72
+ header
73
+ @extend .pt-4
74
+ // Set headings font-family
75
+ @include headings()
76
+ font-family: $font-family-headings-header
77
+
78
+ // NAVBAR
79
+ .navbar-toggler
80
+ color: $navbar-light-color
81
+ border-color: $navbar-light-toggler-border-color
82
+
83
+ .navbar-toggler-icon
84
+ background-image: $navbar-light-toggler-icon-bg
85
+
86
+ // MAIN Headings
87
+ main
88
+ @extend .py-5
89
+ @include headings()
90
+ @extend .mt-3
91
+ .row:first-child .col
92
+ @include headings(1, 6, ':first-child')
93
+ @extend .mt-0
94
+
95
+ // FORMS
96
+ form
97
+ // Checkbox label with mouse pointer
98
+ .custom-checkbox,
99
+ .custom-radio
100
+ label.custom-control-label
101
+ cursor: pointer
102
+
103
+ //
104
+ // Tables
105
+ //
106
+ table
107
+ @extend .table
108
+
109
+ // Blockquote footer
110
+ blockquote
111
+ p:last-of-type
112
+ @extend .mb-0
113
+ footer
114
+ @extend .blockquote-footer
115
+
116
+ // CARDS
117
+ // Remove top margins for `last-of-type` objects
118
+ .card
119
+ .card-title:first-of-type
120
+ @extend .mt-0
121
+ .card-body,
122
+ p:last-of-type,
123
+ ul:last-of-type,
124
+ pre:last-of-type
125
+ @extend .mb-0
126
+ & ~ ul
127
+ @extend .list-group, .list-group-flush
128
+ li
129
+ @extend .list-group-item
130
+ .card-footer
131
+ p:last-of-type
132
+ @extend .mb-0
133
+
134
+ // CODE
135
+ pre.highlight
136
+ @extend .p-2
137
+
138
+ // SYNTAX HIGHLIGHT
139
+ @import "any_theme/syntax_default"