chulapa-jekyll 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (204) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +27 -0
  3. data/LICENSE +21 -0
  4. data/README.md +126 -0
  5. data/_includes/components/author.html +40 -0
  6. data/_includes/components/breadcrumbdatesocial.html +63 -0
  7. data/_includes/components/categories.html +15 -0
  8. data/_includes/components/disqus.html +24 -0
  9. data/_includes/components/headers.html +124 -0
  10. data/_includes/components/indexcards.html +48 -0
  11. data/_includes/components/navbeforeafter.html +22 -0
  12. data/_includes/components/tags.html +15 -0
  13. data/_includes/components/toc.html +112 -0
  14. data/_includes/custom/custom_bottomscripts.html +5 -0
  15. data/_includes/custom/custom_head.html +8 -0
  16. data/_includes/custom/custom_head_before_css.html +5 -0
  17. data/_includes/custom/giscus.html +1 -0
  18. data/_includes/footer.html +129 -0
  19. data/_includes/head.html +309 -0
  20. data/_includes/navbar.html +205 -0
  21. data/_includes/search/algolia.html +3 -0
  22. data/_includes/search/google.html +11 -0
  23. data/_includes/search/lunr.html +7 -0
  24. data/_includes/snippets/bootstrapdemo.html +1390 -0
  25. data/_includes/snippets/carousel.html +61 -0
  26. data/_includes/snippets/datetranslate.html +48 -0
  27. data/_includes/snippets/masonry.html +23 -0
  28. data/_includes/snippets/video.html +26 -0
  29. data/_includes/snippets/youtube.html +6 -0
  30. data/_layouts/archive.html +82 -0
  31. data/_layouts/cloudcategory.html +89 -0
  32. data/_layouts/cloudtag.html +86 -0
  33. data/_layouts/compress.html +10 -0
  34. data/_layouts/default.html +39 -0
  35. data/_layouts/indexcategory.html +36 -0
  36. data/_layouts/landingpage.html +51 -0
  37. data/_layouts/minimal.html +21 -0
  38. data/_layouts/search.html +59 -0
  39. data/_sass/bootstrap/_alert.scss +51 -0
  40. data/_sass/bootstrap/_badge.scss +54 -0
  41. data/_sass/bootstrap/_breadcrumb.scss +44 -0
  42. data/_sass/bootstrap/_button-group.scss +163 -0
  43. data/_sass/bootstrap/_buttons.scss +142 -0
  44. data/_sass/bootstrap/_card.scss +282 -0
  45. data/_sass/bootstrap/_carousel.scss +197 -0
  46. data/_sass/bootstrap/_close.scss +40 -0
  47. data/_sass/bootstrap/_code.scss +48 -0
  48. data/_sass/bootstrap/_custom-forms.scss +522 -0
  49. data/_sass/bootstrap/_dropdown.scss +192 -0
  50. data/_sass/bootstrap/_forms.scss +347 -0
  51. data/_sass/bootstrap/_functions.scss +141 -0
  52. data/_sass/bootstrap/_grid.scss +77 -0
  53. data/_sass/bootstrap/_images.scss +42 -0
  54. data/_sass/bootstrap/_input-group.scss +192 -0
  55. data/_sass/bootstrap/_jumbotron.scss +17 -0
  56. data/_sass/bootstrap/_list-group.scss +154 -0
  57. data/_sass/bootstrap/_media.scss +8 -0
  58. data/_sass/bootstrap/_mixins.scss +47 -0
  59. data/_sass/bootstrap/_modal.scss +241 -0
  60. data/_sass/bootstrap/_nav.scss +121 -0
  61. data/_sass/bootstrap/_navbar.scss +324 -0
  62. data/_sass/bootstrap/_pagination.scss +74 -0
  63. data/_sass/bootstrap/_popover.scss +170 -0
  64. data/_sass/bootstrap/_print.scss +141 -0
  65. data/_sass/bootstrap/_progress.scss +47 -0
  66. data/_sass/bootstrap/_reboot.scss +480 -0
  67. data/_sass/bootstrap/_root.scss +20 -0
  68. data/_sass/bootstrap/_spinners.scss +56 -0
  69. data/_sass/bootstrap/_tables.scss +185 -0
  70. data/_sass/bootstrap/_toasts.scss +44 -0
  71. data/_sass/bootstrap/_tooltip.scss +115 -0
  72. data/_sass/bootstrap/_transitions.scss +20 -0
  73. data/_sass/bootstrap/_type.scss +125 -0
  74. data/_sass/bootstrap/_utilities.scss +18 -0
  75. data/_sass/bootstrap/_variables.scss +1147 -0
  76. data/_sass/bootstrap/bootstrap-grid.scss +29 -0
  77. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  78. data/_sass/bootstrap/bootstrap.scss +44 -0
  79. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  80. data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
  81. data/_sass/bootstrap/mixins/_badge.scss +17 -0
  82. data/_sass/bootstrap/mixins/_border-radius.scss +76 -0
  83. data/_sass/bootstrap/mixins/_box-shadow.scss +20 -0
  84. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  85. data/_sass/bootstrap/mixins/_buttons.scss +110 -0
  86. data/_sass/bootstrap/mixins/_caret.scss +62 -0
  87. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  88. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  89. data/_sass/bootstrap/mixins/_float.scss +14 -0
  90. data/_sass/bootstrap/mixins/_forms.scss +177 -0
  91. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  92. data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
  93. data/_sass/bootstrap/mixins/_grid.scss +69 -0
  94. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  95. data/_sass/bootstrap/mixins/_image.scss +36 -0
  96. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  97. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  98. data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
  99. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  100. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  101. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  102. data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
  103. data/_sass/bootstrap/mixins/_size.scss +7 -0
  104. data/_sass/bootstrap/mixins/_table-row.scss +39 -0
  105. data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
  106. data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
  107. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  108. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  109. data/_sass/bootstrap/mixins/_visibility.scss +8 -0
  110. data/_sass/bootstrap/utilities/_align.scss +8 -0
  111. data/_sass/bootstrap/utilities/_background.scss +19 -0
  112. data/_sass/bootstrap/utilities/_borders.scss +75 -0
  113. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  114. data/_sass/bootstrap/utilities/_display.scss +26 -0
  115. data/_sass/bootstrap/utilities/_embed.scss +39 -0
  116. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  117. data/_sass/bootstrap/utilities/_float.scss +11 -0
  118. data/_sass/bootstrap/utilities/_interactions.scss +5 -0
  119. data/_sass/bootstrap/utilities/_overflow.scss +5 -0
  120. data/_sass/bootstrap/utilities/_position.scss +32 -0
  121. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  122. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  123. data/_sass/bootstrap/utilities/_sizing.scss +20 -0
  124. data/_sass/bootstrap/utilities/_spacing.scss +73 -0
  125. data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
  126. data/_sass/bootstrap/utilities/_text.scss +71 -0
  127. data/_sass/bootstrap/utilities/_visibility.scss +13 -0
  128. data/_sass/bootstrap/vendor/_rfs.scss +204 -0
  129. data/_sass/bootstrapv5-migration.scss +79 -0
  130. data/_sass/chulapa-classes.scss +844 -0
  131. data/_sass/chulapa-master.scss +11 -0
  132. data/_sass/chulapa-misc.scss +105 -0
  133. data/_sass/chulapa-mixins.scss +77 -0
  134. data/_sass/chulapa-vars.scss +48 -0
  135. data/_sass/highlight/README.md +23 -0
  136. data/_sass/highlight/UNLICENSE.txt +24 -0
  137. data/_sass/highlight/autumn.scss +58 -0
  138. data/_sass/highlight/borland.scss +46 -0
  139. data/_sass/highlight/bw.scss +34 -0
  140. data/_sass/highlight/colorful.scss +61 -0
  141. data/_sass/highlight/cran.scss +169 -0
  142. data/_sass/highlight/default.scss +61 -0
  143. data/_sass/highlight/dracula.scss +169 -0
  144. data/_sass/highlight/emacs.scss +61 -0
  145. data/_sass/highlight/friendly.scss +61 -0
  146. data/_sass/highlight/fruity.scss +70 -0
  147. data/_sass/highlight/github.scss +61 -0
  148. data/_sass/highlight/gruvbox.light.scss +84 -0
  149. data/_sass/highlight/manni.scss +61 -0
  150. data/_sass/highlight/monokai.scss +65 -0
  151. data/_sass/highlight/murphy.scss +61 -0
  152. data/_sass/highlight/native.scss +70 -0
  153. data/_sass/highlight/pastie.scss +60 -0
  154. data/_sass/highlight/perldoc.scss +58 -0
  155. data/_sass/highlight/skeletor.scss +140 -0
  156. data/_sass/highlight/tango.scss +69 -0
  157. data/_sass/highlight/thankful_eyes.scss +173 -0
  158. data/_sass/highlight/trac.scss +59 -0
  159. data/_sass/highlight/vim.scss +70 -0
  160. data/_sass/highlight/vs.scss +33 -0
  161. data/_sass/highlight/zenburn.scss +136 -0
  162. data/_sass/reset-algolia.scss +24 -0
  163. data/_sass/skins/academia.scss +26 -0
  164. data/_sass/skins/auto.scss +26 -0
  165. data/_sass/skins/chulapa.scss +52 -0
  166. data/_sass/skins/deeply.scss +89 -0
  167. data/_sass/skins/graymor.scss +26 -0
  168. data/_sass/skins/hootstrap.scss +17 -0
  169. data/_sass/skins/journal.scss +142 -0
  170. data/_sass/skins/lux.scss +377 -0
  171. data/_sass/skins/lymcha.scss +14 -0
  172. data/_sass/skins/minty.scss +165 -0
  173. data/_sass/skins/none.scss +2 -0
  174. data/_sass/skins/pear.scss +21 -0
  175. data/_sass/skins/preptor.scss +19 -0
  176. data/_sass/skins/sketchy.scss +745 -0
  177. data/_sass/skins/sunset.scss +14 -0
  178. data/_sass/skins/twitter-dim.scss +30 -0
  179. data/_sass/skins/twitter-lights-out.scss +31 -0
  180. data/_sass/skins/twitter.scss +30 -0
  181. data/_sass/skins/universal.scss +24 -0
  182. data/_sass/skins/wandoo.scss +15 -0
  183. data/assets/atom.xml +72 -0
  184. data/assets/css/custom.scss +4 -0
  185. data/assets/css/highlighter.scss +5 -0
  186. data/assets/css/main.scss +35 -0
  187. data/assets/fonts/Chulapa/Chulapa-Bold.otf +0 -0
  188. data/assets/fonts/Chulapa/Chulapa-Bold_v2.1.otf +0 -0
  189. data/assets/fonts/Chulapa/Chulapa-Bold_v2.2.otf +0 -0
  190. data/assets/fonts/Chulapa/Chulapa-Bold_v2.otf +0 -0
  191. data/assets/fonts/Chulapa/Chulapa-Bold_vmod.otf +0 -0
  192. data/assets/fonts/Chulapa/Chulapa-Light.otf +0 -0
  193. data/assets/fonts/Chulapa/Chulapa-Regular.otf +0 -0
  194. data/assets/fonts/Chulapa/LICENCIA DE USO.txt +2 -0
  195. data/assets/fonts/Ferpal/Ferpal-Regular.otf +0 -0
  196. data/assets/js/algolia/algolia-search.js +148 -0
  197. data/assets/js/ch_ytdefer/ch_ytdefer.js +81 -0
  198. data/assets/js/ch_ytdefer/ch_ytdefer.min.js +1 -0
  199. data/assets/js/clipboardrouge.js +95 -0
  200. data/assets/js/google/google-search.js +24 -0
  201. data/assets/js/lunr/lunr-search.js +122 -0
  202. data/assets/js/lunr/lunr-store.js +35 -0
  203. data/assets/rss.xml +65 -0
  204. metadata +356 -0
@@ -0,0 +1,141 @@
1
+ // stylelint-disable declaration-no-important, selector-no-qualifying-type
2
+
3
+ // Source: https://github.com/h5bp/main.css/blob/master/src/_print.css
4
+
5
+ // ==========================================================================
6
+ // Print styles.
7
+ // Inlined to avoid the additional HTTP request:
8
+ // https://www.phpied.com/delay-loading-your-print-css/
9
+ // ==========================================================================
10
+
11
+ @if $enable-print-styles {
12
+ @media print {
13
+ *,
14
+ *::before,
15
+ *::after {
16
+ // Bootstrap specific; comment out `color` and `background`
17
+ //color: $black !important; // Black prints faster
18
+ text-shadow: none !important;
19
+ //background: transparent !important;
20
+ box-shadow: none !important;
21
+ }
22
+
23
+ a {
24
+ &:not(.btn) {
25
+ text-decoration: underline;
26
+ }
27
+ }
28
+
29
+ // Bootstrap specific; comment the following selector out
30
+ //a[href]::after {
31
+ // content: " (" attr(href) ")";
32
+ //}
33
+
34
+ abbr[title]::after {
35
+ content: " (" attr(title) ")";
36
+ }
37
+
38
+ // Bootstrap specific; comment the following selector out
39
+ //
40
+ // Don't show links that are fragment identifiers,
41
+ // or use the `javascript:` pseudo protocol
42
+ //
43
+
44
+ //a[href^="#"]::after,
45
+ //a[href^="javascript:"]::after {
46
+ // content: "";
47
+ //}
48
+
49
+ pre {
50
+ white-space: pre-wrap !important;
51
+ }
52
+ pre,
53
+ blockquote {
54
+ border: $border-width solid $gray-500; // Bootstrap custom code; using `$border-width` instead of 1px
55
+ page-break-inside: avoid;
56
+ }
57
+
58
+ //
59
+ // Printing Tables:
60
+ // https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
61
+ //
62
+
63
+ thead {
64
+ display: table-header-group;
65
+ }
66
+
67
+ tr,
68
+ img {
69
+ page-break-inside: avoid;
70
+ }
71
+
72
+ p,
73
+ h2,
74
+ h3 {
75
+ orphans: 3;
76
+ widows: 3;
77
+ }
78
+
79
+ h2,
80
+ h3 {
81
+ page-break-after: avoid;
82
+ }
83
+
84
+ // Bootstrap specific changes start
85
+
86
+ // Specify a size and min-width to make printing closer across browsers.
87
+ // We don't set margin here because it breaks `size` in Chrome. We also
88
+ // don't use `!important` on `size` as it breaks in Chrome.
89
+ @page {
90
+ size: $print-page-size;
91
+ }
92
+ body {
93
+ min-width: $print-body-min-width !important;
94
+ }
95
+ .container {
96
+ min-width: $print-body-min-width !important;
97
+ }
98
+
99
+ // Bootstrap components
100
+ .navbar {
101
+ display: none;
102
+ }
103
+ .badge {
104
+ border: $border-width solid $black;
105
+ }
106
+
107
+ .table {
108
+ border-collapse: collapse !important;
109
+
110
+ td,
111
+ th {
112
+ background-color: $white !important;
113
+ }
114
+ }
115
+
116
+ .table-bordered {
117
+ th,
118
+ td {
119
+ border: 1px solid $gray-300 !important;
120
+ }
121
+ }
122
+
123
+ .table-dark {
124
+ color: inherit;
125
+
126
+ th,
127
+ td,
128
+ thead th,
129
+ tbody + tbody {
130
+ border-color: $table-border-color;
131
+ }
132
+ }
133
+
134
+ .table .thead-dark th {
135
+ color: inherit;
136
+ border-color: $table-border-color;
137
+ }
138
+
139
+ // Bootstrap specific changes end
140
+ }
141
+ }
@@ -0,0 +1,47 @@
1
+ // Disable animation if transitions are disabled
2
+ @if $enable-transitions {
3
+ @keyframes progress-bar-stripes {
4
+ from { background-position: $progress-height 0; }
5
+ to { background-position: 0 0; }
6
+ }
7
+ }
8
+
9
+ .progress {
10
+ display: flex;
11
+ height: $progress-height;
12
+ overflow: hidden; // force rounded corners by cropping it
13
+ line-height: 0;
14
+ @include font-size($progress-font-size);
15
+ background-color: $progress-bg;
16
+ @include border-radius($progress-border-radius);
17
+ @include box-shadow($progress-box-shadow);
18
+ }
19
+
20
+ .progress-bar {
21
+ display: flex;
22
+ flex-direction: column;
23
+ justify-content: center;
24
+ overflow: hidden;
25
+ color: $progress-bar-color;
26
+ text-align: center;
27
+ white-space: nowrap;
28
+ background-color: $progress-bar-bg;
29
+ @include transition($progress-bar-transition);
30
+ }
31
+
32
+ .progress-bar-striped {
33
+ @include gradient-striped();
34
+ background-size: $progress-height $progress-height;
35
+ }
36
+
37
+ @if $enable-transitions {
38
+ .progress-bar-animated {
39
+ animation: progress-bar-stripes $progress-bar-animation-timing;
40
+
41
+ @if $enable-prefers-reduced-motion-media-query {
42
+ @media (prefers-reduced-motion: reduce) {
43
+ animation: none;
44
+ }
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,480 @@
1
+ // stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
2
+
3
+ // Reboot
4
+ //
5
+ // Normalization of HTML elements, manually forked from Normalize.css to remove
6
+ // styles targeting irrelevant browsers while applying new styles.
7
+ //
8
+ // Normalize is licensed MIT. https://github.com/necolas/normalize.css
9
+
10
+
11
+ // Document
12
+ //
13
+ // 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
14
+ // 2. Change the default font family in all browsers.
15
+ // 3. Correct the line height in all browsers.
16
+ // 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.
17
+ // 5. Change the default tap highlight to be completely transparent in iOS.
18
+
19
+ *,
20
+ *::before,
21
+ *::after {
22
+ box-sizing: border-box; // 1
23
+ }
24
+
25
+ html {
26
+ font-family: sans-serif; // 2
27
+ line-height: 1.15; // 3
28
+ -webkit-text-size-adjust: 100%; // 4
29
+ -webkit-tap-highlight-color: rgba($black, 0); // 5
30
+ }
31
+
32
+ // Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers)
33
+ // TODO: remove in v5
34
+ // stylelint-disable-next-line selector-list-comma-newline-after
35
+ article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
36
+ display: block;
37
+ }
38
+
39
+ // Body
40
+ //
41
+ // 1. Remove the margin in all browsers.
42
+ // 2. As a best practice, apply a default `background-color`.
43
+ // 3. Set an explicit initial text-align value so that we can later use
44
+ // the `inherit` value on things like `<th>` elements.
45
+
46
+ body {
47
+ margin: 0; // 1
48
+ font-family: $font-family-base;
49
+ @include font-size($font-size-base);
50
+ font-weight: $font-weight-base;
51
+ line-height: $line-height-base;
52
+ color: $body-color;
53
+ text-align: left; // 3
54
+ background-color: $body-bg; // 2
55
+ }
56
+
57
+ // Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
58
+ // on elements that programmatically receive focus but wouldn't normally show a visible
59
+ // focus outline. In general, this would mean that the outline is only applied if the
60
+ // interaction that led to the element receiving programmatic focus was a keyboard interaction,
61
+ // or the browser has somehow determined that the user is primarily a keyboard user and/or
62
+ // wants focus outlines to always be presented.
63
+ //
64
+ // See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible
65
+ // and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/
66
+ [tabindex="-1"]:focus:not(:focus-visible) {
67
+ outline: 0 !important;
68
+ }
69
+
70
+
71
+ // Content grouping
72
+ //
73
+ // 1. Add the correct box sizing in Firefox.
74
+ // 2. Show the overflow in Edge and IE.
75
+
76
+ hr {
77
+ box-sizing: content-box; // 1
78
+ height: 0; // 1
79
+ overflow: visible; // 2
80
+ }
81
+
82
+
83
+ //
84
+ // Typography
85
+ //
86
+
87
+ // Remove top margins from headings
88
+ //
89
+ // By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top
90
+ // margin for easier control within type scales as it avoids margin collapsing.
91
+ // stylelint-disable-next-line selector-list-comma-newline-after
92
+ h1, h2, h3, h4, h5, h6 {
93
+ margin-top: 0;
94
+ margin-bottom: $headings-margin-bottom;
95
+ }
96
+
97
+ // Reset margins on paragraphs
98
+ //
99
+ // Similarly, the top margin on `<p>`s get reset. However, we also reset the
100
+ // bottom margin to use `rem` units instead of `em`.
101
+ p {
102
+ margin-top: 0;
103
+ margin-bottom: $paragraph-margin-bottom;
104
+ }
105
+
106
+ // Abbreviations
107
+ //
108
+ // 1. Duplicate behavior to the data-* attribute for our tooltip plugin
109
+ // 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
110
+ // 3. Add explicit cursor to indicate changed behavior.
111
+ // 4. Remove the bottom border in Firefox 39-.
112
+ // 5. Prevent the text-decoration to be skipped.
113
+
114
+ abbr[title],
115
+ abbr[data-original-title] { // 1
116
+ text-decoration: underline; // 2
117
+ text-decoration: underline dotted; // 2
118
+ cursor: help; // 3
119
+ border-bottom: 0; // 4
120
+ text-decoration-skip-ink: none; // 5
121
+ }
122
+
123
+ address {
124
+ margin-bottom: 1rem;
125
+ font-style: normal;
126
+ line-height: inherit;
127
+ }
128
+
129
+ ol,
130
+ ul,
131
+ dl {
132
+ margin-top: 0;
133
+ margin-bottom: 1rem;
134
+ }
135
+
136
+ ol ol,
137
+ ul ul,
138
+ ol ul,
139
+ ul ol {
140
+ margin-bottom: 0;
141
+ }
142
+
143
+ dt {
144
+ font-weight: $dt-font-weight;
145
+ }
146
+
147
+ dd {
148
+ margin-bottom: .5rem;
149
+ margin-left: 0; // Undo browser default
150
+ }
151
+
152
+ blockquote {
153
+ margin: 0 0 1rem;
154
+ }
155
+
156
+ b,
157
+ strong {
158
+ font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari
159
+ }
160
+
161
+ small {
162
+ @include font-size(80%); // Add the correct font size in all browsers
163
+ }
164
+
165
+ //
166
+ // Prevent `sub` and `sup` elements from affecting the line height in
167
+ // all browsers.
168
+ //
169
+
170
+ sub,
171
+ sup {
172
+ position: relative;
173
+ @include font-size(75%);
174
+ line-height: 0;
175
+ vertical-align: baseline;
176
+ }
177
+
178
+ sub { bottom: -.25em; }
179
+ sup { top: -.5em; }
180
+
181
+
182
+ //
183
+ // Links
184
+ //
185
+
186
+ a {
187
+ color: $link-color;
188
+ text-decoration: $link-decoration;
189
+ background-color: transparent; // Remove the gray background on active links in IE 10.
190
+
191
+ @include hover() {
192
+ color: $link-hover-color;
193
+ text-decoration: $link-hover-decoration;
194
+ }
195
+ }
196
+
197
+ // And undo these styles for placeholder links/named anchors (without href).
198
+ // It would be more straightforward to just use a[href] in previous block, but that
199
+ // causes specificity issues in many other styles that are too complex to fix.
200
+ // See https://github.com/twbs/bootstrap/issues/19402
201
+
202
+ a:not([href]) {
203
+ color: inherit;
204
+ text-decoration: none;
205
+
206
+ @include hover() {
207
+ color: inherit;
208
+ text-decoration: none;
209
+ }
210
+ }
211
+
212
+
213
+ //
214
+ // Code
215
+ //
216
+
217
+ pre,
218
+ code,
219
+ kbd,
220
+ samp {
221
+ font-family: $font-family-monospace;
222
+ @include font-size(1em); // Correct the odd `em` font sizing in all browsers.
223
+ }
224
+
225
+ pre {
226
+ // Remove browser default top margin
227
+ margin-top: 0;
228
+ // Reset browser default of `1em` to use `rem`s
229
+ margin-bottom: 1rem;
230
+ // Don't allow content to break outside
231
+ overflow: auto;
232
+ // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,
233
+ // making it impossible to interact with the content
234
+ -ms-overflow-style: scrollbar;
235
+ }
236
+
237
+
238
+ //
239
+ // Figures
240
+ //
241
+
242
+ figure {
243
+ // Apply a consistent margin strategy (matches our type styles).
244
+ margin: 0 0 1rem;
245
+ }
246
+
247
+
248
+ //
249
+ // Images and content
250
+ //
251
+
252
+ img {
253
+ vertical-align: middle;
254
+ border-style: none; // Remove the border on images inside links in IE 10-.
255
+ }
256
+
257
+ svg {
258
+ // Workaround for the SVG overflow bug in IE10/11 is still required.
259
+ // See https://github.com/twbs/bootstrap/issues/26878
260
+ overflow: hidden;
261
+ vertical-align: middle;
262
+ }
263
+
264
+
265
+ //
266
+ // Tables
267
+ //
268
+
269
+ table {
270
+ border-collapse: collapse; // Prevent double borders
271
+ }
272
+
273
+ caption {
274
+ padding-top: $table-cell-padding;
275
+ padding-bottom: $table-cell-padding;
276
+ color: $table-caption-color;
277
+ text-align: left;
278
+ caption-side: bottom;
279
+ }
280
+
281
+ th {
282
+ // Matches default `<td>` alignment by inheriting from the `<body>`, or the
283
+ // closest parent with a set `text-align`.
284
+ text-align: inherit;
285
+ }
286
+
287
+
288
+ //
289
+ // Forms
290
+ //
291
+
292
+ label {
293
+ // Allow labels to use `margin` for spacing.
294
+ display: inline-block;
295
+ margin-bottom: $label-margin-bottom;
296
+ }
297
+
298
+ // Remove the default `border-radius` that macOS Chrome adds.
299
+ //
300
+ // Details at https://github.com/twbs/bootstrap/issues/24093
301
+ button {
302
+ // stylelint-disable-next-line property-blacklist
303
+ border-radius: 0;
304
+ }
305
+
306
+ // Work around a Firefox/IE bug where the transparent `button` background
307
+ // results in a loss of the default `button` focus styles.
308
+ //
309
+ // Credit: https://github.com/suitcss/base/
310
+ button:focus {
311
+ outline: 1px dotted;
312
+ outline: 5px auto -webkit-focus-ring-color;
313
+ }
314
+
315
+ input,
316
+ button,
317
+ select,
318
+ optgroup,
319
+ textarea {
320
+ margin: 0; // Remove the margin in Firefox and Safari
321
+ font-family: inherit;
322
+ @include font-size(inherit);
323
+ line-height: inherit;
324
+ }
325
+
326
+ button,
327
+ input {
328
+ overflow: visible; // Show the overflow in Edge
329
+ }
330
+
331
+ button,
332
+ select {
333
+ text-transform: none; // Remove the inheritance of text transform in Firefox
334
+ }
335
+
336
+ // Set the cursor for non-`<button>` buttons
337
+ //
338
+ // Details at https://github.com/twbs/bootstrap/pull/30562
339
+ [role="button"] {
340
+ cursor: pointer;
341
+ }
342
+
343
+ // Remove the inheritance of word-wrap in Safari.
344
+ //
345
+ // Details at https://github.com/twbs/bootstrap/issues/24990
346
+ select {
347
+ word-wrap: normal;
348
+ }
349
+
350
+
351
+ // 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
352
+ // controls in Android 4.
353
+ // 2. Correct the inability to style clickable types in iOS and Safari.
354
+ button,
355
+ [type="button"], // 1
356
+ [type="reset"],
357
+ [type="submit"] {
358
+ -webkit-appearance: button; // 2
359
+ }
360
+
361
+ // Opinionated: add "hand" cursor to non-disabled button elements.
362
+ @if $enable-pointer-cursor-for-buttons {
363
+ button,
364
+ [type="button"],
365
+ [type="reset"],
366
+ [type="submit"] {
367
+ &:not(:disabled) {
368
+ cursor: pointer;
369
+ }
370
+ }
371
+ }
372
+
373
+ // Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
374
+ button::-moz-focus-inner,
375
+ [type="button"]::-moz-focus-inner,
376
+ [type="reset"]::-moz-focus-inner,
377
+ [type="submit"]::-moz-focus-inner {
378
+ padding: 0;
379
+ border-style: none;
380
+ }
381
+
382
+ input[type="radio"],
383
+ input[type="checkbox"] {
384
+ box-sizing: border-box; // 1. Add the correct box sizing in IE 10-
385
+ padding: 0; // 2. Remove the padding in IE 10-
386
+ }
387
+
388
+
389
+ textarea {
390
+ overflow: auto; // Remove the default vertical scrollbar in IE.
391
+ // Textareas should really only resize vertically so they don't break their (horizontal) containers.
392
+ resize: vertical;
393
+ }
394
+
395
+ fieldset {
396
+ // Browsers set a default `min-width: min-content;` on fieldsets,
397
+ // unlike e.g. `<div>`s, which have `min-width: 0;` by default.
398
+ // So we reset that to ensure fieldsets behave more like a standard block element.
399
+ // See https://github.com/twbs/bootstrap/issues/12359
400
+ // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
401
+ min-width: 0;
402
+ // Reset the default outline behavior of fieldsets so they don't affect page layout.
403
+ padding: 0;
404
+ margin: 0;
405
+ border: 0;
406
+ }
407
+
408
+ // 1. Correct the text wrapping in Edge and IE.
409
+ // 2. Correct the color inheritance from `fieldset` elements in IE.
410
+ legend {
411
+ display: block;
412
+ width: 100%;
413
+ max-width: 100%; // 1
414
+ padding: 0;
415
+ margin-bottom: .5rem;
416
+ @include font-size(1.5rem);
417
+ line-height: inherit;
418
+ color: inherit; // 2
419
+ white-space: normal; // 1
420
+ }
421
+
422
+ progress {
423
+ vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.
424
+ }
425
+
426
+ // Correct the cursor style of increment and decrement buttons in Chrome.
427
+ [type="number"]::-webkit-inner-spin-button,
428
+ [type="number"]::-webkit-outer-spin-button {
429
+ height: auto;
430
+ }
431
+
432
+ [type="search"] {
433
+ // This overrides the extra rounded corners on search inputs in iOS so that our
434
+ // `.form-control` class can properly style them. Note that this cannot simply
435
+ // be added to `.form-control` as it's not specific enough. For details, see
436
+ // https://github.com/twbs/bootstrap/issues/11586.
437
+ outline-offset: -2px; // 2. Correct the outline style in Safari.
438
+ -webkit-appearance: none;
439
+ }
440
+
441
+ //
442
+ // Remove the inner padding in Chrome and Safari on macOS.
443
+ //
444
+
445
+ [type="search"]::-webkit-search-decoration {
446
+ -webkit-appearance: none;
447
+ }
448
+
449
+ //
450
+ // 1. Correct the inability to style clickable types in iOS and Safari.
451
+ // 2. Change font properties to `inherit` in Safari.
452
+ //
453
+
454
+ ::-webkit-file-upload-button {
455
+ font: inherit; // 2
456
+ -webkit-appearance: button; // 1
457
+ }
458
+
459
+ //
460
+ // Correct element displays
461
+ //
462
+
463
+ output {
464
+ display: inline-block;
465
+ }
466
+
467
+ summary {
468
+ display: list-item; // Add the correct display in all browsers
469
+ cursor: pointer;
470
+ }
471
+
472
+ template {
473
+ display: none; // Add the correct display in IE
474
+ }
475
+
476
+ // Always hide an element with the `hidden` HTML attribute (from PureCSS).
477
+ // Needed for proper display in IE 10-.
478
+ [hidden] {
479
+ display: none !important;
480
+ }
@@ -0,0 +1,20 @@
1
+ // Do not forget to update getting-started/theming.md!
2
+ :root {
3
+ // Custom variable values only support SassScript inside `#{}`.
4
+ @each $color, $value in $colors {
5
+ --#{$color}: #{$value};
6
+ }
7
+
8
+ @each $color, $value in $theme-colors {
9
+ --#{$color}: #{$value};
10
+ }
11
+
12
+ @each $bp, $value in $grid-breakpoints {
13
+ --breakpoint-#{$bp}: #{$value};
14
+ }
15
+
16
+ // Use `inspect` for lists so that quoted items keep the quotes.
17
+ // See https://github.com/sass/sass/issues/2383#issuecomment-336349172
18
+ --font-family-sans-serif: #{inspect($font-family-sans-serif)};
19
+ --font-family-monospace: #{inspect($font-family-monospace)};
20
+ }