chulapa-jekyll 1.0.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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +27 -0
- data/LICENSE +21 -0
- data/README.md +126 -0
- data/_includes/components/author.html +40 -0
- data/_includes/components/breadcrumbdatesocial.html +63 -0
- data/_includes/components/categories.html +15 -0
- data/_includes/components/disqus.html +24 -0
- data/_includes/components/headers.html +124 -0
- data/_includes/components/indexcards.html +48 -0
- data/_includes/components/navbeforeafter.html +22 -0
- data/_includes/components/tags.html +15 -0
- data/_includes/components/toc.html +112 -0
- data/_includes/custom/custom_bottomscripts.html +5 -0
- data/_includes/custom/custom_head.html +8 -0
- data/_includes/custom/custom_head_before_css.html +5 -0
- data/_includes/custom/giscus.html +1 -0
- data/_includes/footer.html +129 -0
- data/_includes/head.html +309 -0
- data/_includes/navbar.html +205 -0
- data/_includes/search/algolia.html +3 -0
- data/_includes/search/google.html +11 -0
- data/_includes/search/lunr.html +7 -0
- data/_includes/snippets/bootstrapdemo.html +1390 -0
- data/_includes/snippets/carousel.html +61 -0
- data/_includes/snippets/datetranslate.html +48 -0
- data/_includes/snippets/masonry.html +23 -0
- data/_includes/snippets/video.html +26 -0
- data/_includes/snippets/youtube.html +6 -0
- data/_layouts/archive.html +82 -0
- data/_layouts/cloudcategory.html +89 -0
- data/_layouts/cloudtag.html +86 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/default.html +39 -0
- data/_layouts/indexcategory.html +36 -0
- data/_layouts/landingpage.html +51 -0
- data/_layouts/minimal.html +21 -0
- data/_layouts/search.html +59 -0
- data/_sass/bootstrap/_alert.scss +51 -0
- data/_sass/bootstrap/_badge.scss +54 -0
- data/_sass/bootstrap/_breadcrumb.scss +44 -0
- data/_sass/bootstrap/_button-group.scss +163 -0
- data/_sass/bootstrap/_buttons.scss +142 -0
- data/_sass/bootstrap/_card.scss +282 -0
- data/_sass/bootstrap/_carousel.scss +197 -0
- data/_sass/bootstrap/_close.scss +40 -0
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +522 -0
- data/_sass/bootstrap/_dropdown.scss +192 -0
- data/_sass/bootstrap/_forms.scss +347 -0
- data/_sass/bootstrap/_functions.scss +141 -0
- data/_sass/bootstrap/_grid.scss +77 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_input-group.scss +192 -0
- data/_sass/bootstrap/_jumbotron.scss +17 -0
- data/_sass/bootstrap/_list-group.scss +154 -0
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +47 -0
- data/_sass/bootstrap/_modal.scss +241 -0
- data/_sass/bootstrap/_nav.scss +121 -0
- data/_sass/bootstrap/_navbar.scss +324 -0
- data/_sass/bootstrap/_pagination.scss +74 -0
- data/_sass/bootstrap/_popover.scss +170 -0
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +47 -0
- data/_sass/bootstrap/_reboot.scss +480 -0
- data/_sass/bootstrap/_root.scss +20 -0
- data/_sass/bootstrap/_spinners.scss +56 -0
- data/_sass/bootstrap/_tables.scss +185 -0
- data/_sass/bootstrap/_toasts.scss +44 -0
- data/_sass/bootstrap/_tooltip.scss +115 -0
- data/_sass/bootstrap/_transitions.scss +20 -0
- data/_sass/bootstrap/_type.scss +125 -0
- data/_sass/bootstrap/_utilities.scss +18 -0
- data/_sass/bootstrap/_variables.scss +1147 -0
- data/_sass/bootstrap/bootstrap-grid.scss +29 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/bootstrap.scss +44 -0
- data/_sass/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
- data/_sass/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +76 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +20 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/mixins/_buttons.scss +110 -0
- data/_sass/bootstrap/mixins/_caret.scss +62 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_float.scss +14 -0
- data/_sass/bootstrap/mixins/_forms.scss +177 -0
- data/_sass/bootstrap/mixins/_gradients.scss +45 -0
- data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
- data/_sass/bootstrap/mixins/_grid.scss +69 -0
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +36 -0
- data/_sass/bootstrap/mixins/_list-group.scss +21 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
- data/_sass/bootstrap/mixins/_pagination.scss +22 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
- data/_sass/bootstrap/mixins/_size.scss +7 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/utilities/_display.scss +26 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +11 -0
- data/_sass/bootstrap/utilities/_interactions.scss +5 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/bootstrap/utilities/_text.scss +71 -0
- data/_sass/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/bootstrap/vendor/_rfs.scss +204 -0
- data/_sass/bootstrapv5-migration.scss +79 -0
- data/_sass/chulapa-classes.scss +844 -0
- data/_sass/chulapa-master.scss +11 -0
- data/_sass/chulapa-misc.scss +105 -0
- data/_sass/chulapa-mixins.scss +77 -0
- data/_sass/chulapa-vars.scss +48 -0
- data/_sass/highlight/README.md +23 -0
- data/_sass/highlight/UNLICENSE.txt +24 -0
- data/_sass/highlight/autumn.scss +58 -0
- data/_sass/highlight/borland.scss +46 -0
- data/_sass/highlight/bw.scss +34 -0
- data/_sass/highlight/colorful.scss +61 -0
- data/_sass/highlight/cran.scss +169 -0
- data/_sass/highlight/default.scss +61 -0
- data/_sass/highlight/dracula.scss +169 -0
- data/_sass/highlight/emacs.scss +61 -0
- data/_sass/highlight/friendly.scss +61 -0
- data/_sass/highlight/fruity.scss +70 -0
- data/_sass/highlight/github.scss +61 -0
- data/_sass/highlight/gruvbox.light.scss +84 -0
- data/_sass/highlight/manni.scss +61 -0
- data/_sass/highlight/monokai.scss +65 -0
- data/_sass/highlight/murphy.scss +61 -0
- data/_sass/highlight/native.scss +70 -0
- data/_sass/highlight/pastie.scss +60 -0
- data/_sass/highlight/perldoc.scss +58 -0
- data/_sass/highlight/skeletor.scss +140 -0
- data/_sass/highlight/tango.scss +69 -0
- data/_sass/highlight/thankful_eyes.scss +173 -0
- data/_sass/highlight/trac.scss +59 -0
- data/_sass/highlight/vim.scss +70 -0
- data/_sass/highlight/vs.scss +33 -0
- data/_sass/highlight/zenburn.scss +136 -0
- data/_sass/reset-algolia.scss +24 -0
- data/_sass/skins/academia.scss +26 -0
- data/_sass/skins/auto.scss +26 -0
- data/_sass/skins/chulapa.scss +52 -0
- data/_sass/skins/deeply.scss +89 -0
- data/_sass/skins/graymor.scss +26 -0
- data/_sass/skins/hootstrap.scss +17 -0
- data/_sass/skins/journal.scss +142 -0
- data/_sass/skins/lux.scss +377 -0
- data/_sass/skins/lymcha.scss +14 -0
- data/_sass/skins/minty.scss +165 -0
- data/_sass/skins/none.scss +2 -0
- data/_sass/skins/pear.scss +21 -0
- data/_sass/skins/preptor.scss +19 -0
- data/_sass/skins/sketchy.scss +745 -0
- data/_sass/skins/sunset.scss +14 -0
- data/_sass/skins/twitter-dim.scss +30 -0
- data/_sass/skins/twitter-lights-out.scss +31 -0
- data/_sass/skins/twitter.scss +30 -0
- data/_sass/skins/universal.scss +24 -0
- data/_sass/skins/wandoo.scss +15 -0
- data/assets/atom.xml +72 -0
- data/assets/css/custom.scss +4 -0
- data/assets/css/highlighter.scss +5 -0
- data/assets/css/main.scss +35 -0
- data/assets/fonts/Chulapa/Chulapa-Bold.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.1.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.2.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_vmod.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Light.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Regular.otf +0 -0
- data/assets/fonts/Chulapa/LICENCIA DE USO.txt +2 -0
- data/assets/fonts/Ferpal/Ferpal-Regular.otf +0 -0
- data/assets/js/algolia/algolia-search.js +148 -0
- data/assets/js/ch_ytdefer/ch_ytdefer.js +81 -0
- data/assets/js/ch_ytdefer/ch_ytdefer.min.js +1 -0
- data/assets/js/clipboardrouge.js +95 -0
- data/assets/js/google/google-search.js +24 -0
- data/assets/js/lunr/lunr-search.js +122 -0
- data/assets/js/lunr/lunr-store.js +35 -0
- data/assets/rss.xml +65 -0
- metadata +356 -0
@@ -0,0 +1,844 @@
|
|
1
|
+
/*!
|
2
|
+
* Specific classes and formats for chulapa
|
3
|
+
*/
|
4
|
+
.chulapa {
|
5
|
+
font-family: chulapa, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
6
|
+
// Enable Ligatures
|
7
|
+
-webkit-font-feature-settings: "liga", "dlig";
|
8
|
+
-moz-font-feature-settings: "liga=1, dlig=1";
|
9
|
+
-moz-font-feature-settings: "liga", "dlig";
|
10
|
+
-ms-font-feature-settings: "liga", "dlig";
|
11
|
+
-o-font-feature-settings: "liga", "dlig";
|
12
|
+
font-feature-settings: "liga", "dlig";
|
13
|
+
text-rendering: optimizeLegibility;
|
14
|
+
}
|
15
|
+
|
16
|
+
.chulapa-bg-transparent{
|
17
|
+
background-color: transparent !important;
|
18
|
+
}
|
19
|
+
|
20
|
+
.chulapa-rounded-lg{
|
21
|
+
@include border-radius($border-radius-lg);
|
22
|
+
}
|
23
|
+
|
24
|
+
@each $color,
|
25
|
+
$value in $theme-colors {
|
26
|
+
.chulapa-pill-bg-#{$color} {
|
27
|
+
@include badge-variant($value);
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
.chulapa-pill-bg-body {
|
32
|
+
@include badge-variant($body-bg);
|
33
|
+
border-style: solid;
|
34
|
+
border-width: $border-width;
|
35
|
+
border-color: color-contrast($body-bg);
|
36
|
+
}
|
37
|
+
|
38
|
+
.chulapa-text-body-color {
|
39
|
+
color: $body-color !important;
|
40
|
+
}
|
41
|
+
|
42
|
+
.chulapaDateSocial {
|
43
|
+
color: $body-color;
|
44
|
+
|
45
|
+
a {
|
46
|
+
color: $body-color;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
//Not used yet
|
51
|
+
.chulapa-headingfont {
|
52
|
+
font-family: $headings-font-family;
|
53
|
+
}
|
54
|
+
|
55
|
+
.chulapa-links-hover-only {
|
56
|
+
a {
|
57
|
+
color: inherit;
|
58
|
+
|
59
|
+
@include hover() {
|
60
|
+
color: $link-hover-color;
|
61
|
+
text-decoration: $link-hover-decoration;
|
62
|
+
}
|
63
|
+
}
|
64
|
+
}
|
65
|
+
|
66
|
+
// Navbar
|
67
|
+
.navbar-chulapa {
|
68
|
+
background-color: $navbar-chulapa-bg-color;
|
69
|
+
|
70
|
+
.navbar-brand {
|
71
|
+
color: $navbar-chulapa-brand-color;
|
72
|
+
font-weight: bold;
|
73
|
+
|
74
|
+
@include hover-focus() {
|
75
|
+
color: $navbar-chulapa-brand-hover-color;
|
76
|
+
}
|
77
|
+
|
78
|
+
}
|
79
|
+
|
80
|
+
.btn {
|
81
|
+
border-color: $navbar-chulapa-text-color;
|
82
|
+
color: $navbar-chulapa-text-color;
|
83
|
+
|
84
|
+
@include hover-focus() {
|
85
|
+
color: $navbar-chulapa-hover-color;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
.navbar-nav {
|
90
|
+
.nav-link {
|
91
|
+
color: $navbar-chulapa-text-color;
|
92
|
+
|
93
|
+
@include hover-focus() {
|
94
|
+
color: $navbar-chulapa-hover-color;
|
95
|
+
|
96
|
+
}
|
97
|
+
|
98
|
+
&.disabled {
|
99
|
+
color: $navbar-chulapa-disabled-color;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
.show>.nav-link,
|
104
|
+
.active>.nav-link,
|
105
|
+
.nav-link.show,
|
106
|
+
.nav-link.active {
|
107
|
+
color: $navbar-chulapa-active-color;
|
108
|
+
}
|
109
|
+
|
110
|
+
}
|
111
|
+
|
112
|
+
.navbar-toggler {
|
113
|
+
color: $navbar-chulapa-text-color;
|
114
|
+
border-color: $navbar-chulapa-toggler-border-color;
|
115
|
+
background-color: $navbar-chulapa-toggler-color-bg;
|
116
|
+
}
|
117
|
+
|
118
|
+
.navbar-toggler-icon {
|
119
|
+
background-image: escape-svg($navbar-chulapa-toggler-icon-bg);
|
120
|
+
}
|
121
|
+
|
122
|
+
.navbar-text {
|
123
|
+
color: $navbar-chulapa-text-color;
|
124
|
+
|
125
|
+
a {
|
126
|
+
color: $navbar-chulapa-active-color;
|
127
|
+
|
128
|
+
@include hover-focus() {
|
129
|
+
color: $navbar-chulapa-active-color;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
}
|
133
|
+
|
134
|
+
.dropdown-menu {
|
135
|
+
background-color: $navbar-chulapa-bg-color;
|
136
|
+
border-style: none;
|
137
|
+
|
138
|
+
.dropdown-item {
|
139
|
+
color: $navbar-chulapa-text-color;
|
140
|
+
|
141
|
+
@include hover-focus() {
|
142
|
+
color: $navbar-chulapa-hover-color;
|
143
|
+
}
|
144
|
+
|
145
|
+
&.disabled {
|
146
|
+
color: $navbar-chulapa-disabled-color;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
.show>.dropdown-item,
|
151
|
+
.active>.dropdown-item,
|
152
|
+
.dropdown-item.show,
|
153
|
+
.dropdown-item.active {
|
154
|
+
color: $navbar-chulapa-active-color;
|
155
|
+
background-color: $navbar-chulapa-bg-color;
|
156
|
+
}
|
157
|
+
}
|
158
|
+
}
|
159
|
+
|
160
|
+
// Hero and headers
|
161
|
+
.hero-chulapa {
|
162
|
+
font-family: $headings-font-family;
|
163
|
+
background-color: $hero-chulapa-bg-color;
|
164
|
+
text-align: center;
|
165
|
+
min-height: 40vh;
|
166
|
+
|
167
|
+
|
168
|
+
hr {
|
169
|
+
background-color: $hero-chulapa-text-color;
|
170
|
+
width: 15%;
|
171
|
+
}
|
172
|
+
|
173
|
+
h1,
|
174
|
+
p {
|
175
|
+
color: $hero-chulapa-text-color;
|
176
|
+
word-wrap: break-word;
|
177
|
+
-ms-word-wrap: break-word;
|
178
|
+
}
|
179
|
+
|
180
|
+
p {
|
181
|
+
@include fluid-type(font-size, breakpoint-min("md"), breakpoint-min("lg"), 1.5*$font-size-base, 2*$font-size-base);
|
182
|
+
}
|
183
|
+
|
184
|
+
.chulapa-btn-project{
|
185
|
+
border-color:$hero-chulapa-text-color;
|
186
|
+
color: $hero-chulapa-text-color;
|
187
|
+
@include fluid-type(font-size, breakpoint-min("md"), breakpoint-min("lg"), $font-size-base, $font-size-lg);
|
188
|
+
@include hover-focus() {
|
189
|
+
border-color: $hero-chulapa-text-color;
|
190
|
+
color: $hero-chulapa-bg-color;
|
191
|
+
background-color: $hero-chulapa-text-color;
|
192
|
+
text-shadow: none;
|
193
|
+
}
|
194
|
+
}
|
195
|
+
}
|
196
|
+
|
197
|
+
@include media-breakpoint-up(md) {
|
198
|
+
.hero-chulapa h1 {
|
199
|
+
font-size: $display4-size;
|
200
|
+
font-weight: $display4-weight;
|
201
|
+
}
|
202
|
+
|
203
|
+
.hero-chulapa p {
|
204
|
+
font-weight: $display4-weight;
|
205
|
+
}
|
206
|
+
}
|
207
|
+
|
208
|
+
@include media-breakpoint-up(lg) {
|
209
|
+
.hero-chulapa h1 {
|
210
|
+
font-size: $display3-size;
|
211
|
+
}
|
212
|
+
}
|
213
|
+
|
214
|
+
.hero-chulapa-image {
|
215
|
+
@extend .hero-chulapa;
|
216
|
+
background-position: center;
|
217
|
+
background-repeat: no-repeat;
|
218
|
+
background-size: cover;
|
219
|
+
position: relative;
|
220
|
+
|
221
|
+
h1,p {
|
222
|
+
color: $white;
|
223
|
+
text-shadow: 0.1rem 0.1rem 0.2rem $black;
|
224
|
+
}
|
225
|
+
|
226
|
+
hr {
|
227
|
+
background-color: $white;
|
228
|
+
box-shadow: 0.1rem 0.1rem 0.2rem $black;
|
229
|
+
}
|
230
|
+
|
231
|
+
.chulapa-btn-project{
|
232
|
+
color: $white;
|
233
|
+
border-color: $white;
|
234
|
+
text-shadow: none;
|
235
|
+
@include hover-focus() {
|
236
|
+
border-color: $light;
|
237
|
+
color: $light;
|
238
|
+
background-color: $dark;
|
239
|
+
text-shadow: none;
|
240
|
+
}
|
241
|
+
}
|
242
|
+
}
|
243
|
+
|
244
|
+
.splash-chulapa {
|
245
|
+
@extend .hero-chulapa;
|
246
|
+
min-height: 100vh;
|
247
|
+
|
248
|
+
h1,
|
249
|
+
p {
|
250
|
+
font-weight: $display1-weight;
|
251
|
+
}
|
252
|
+
|
253
|
+
h1 {
|
254
|
+
@include fluid-type(font-size, breakpoint-min("md"), breakpoint-min("lg"), $font-size-base * 3, $display1-size);
|
255
|
+
}
|
256
|
+
|
257
|
+
p {
|
258
|
+
@include fluid-type(font-size, breakpoint-min("md"), breakpoint-min("lg"), $font-size-base * 1.5, $h1-font-size);
|
259
|
+
}
|
260
|
+
}
|
261
|
+
|
262
|
+
.splash-chulapa-image {
|
263
|
+
@extend .splash-chulapa;
|
264
|
+
background-position: center;
|
265
|
+
background-repeat: no-repeat;
|
266
|
+
background-size: cover;
|
267
|
+
position: relative;
|
268
|
+
|
269
|
+
h1,p {
|
270
|
+
color: $white;
|
271
|
+
text-shadow: 0.1rem 0.1rem 0.2rem $black;
|
272
|
+
}
|
273
|
+
|
274
|
+
hr {
|
275
|
+
background-color: $white;
|
276
|
+
box-shadow: 0.1rem 0.1rem 0.2rem $black;
|
277
|
+
}
|
278
|
+
|
279
|
+
.chulapa-btn-project{
|
280
|
+
color: $white;
|
281
|
+
background-color: transparent;
|
282
|
+
border-color: $white;
|
283
|
+
text-shadow: none;
|
284
|
+
@include hover-focus() {
|
285
|
+
border-color: $light;
|
286
|
+
color: $light;
|
287
|
+
background-color: $dark;
|
288
|
+
text-shadow: none;
|
289
|
+
}
|
290
|
+
}
|
291
|
+
}
|
292
|
+
|
293
|
+
.header-chulapa {
|
294
|
+
background-color: transparent;
|
295
|
+
color: $body-color;
|
296
|
+
|
297
|
+
h1,
|
298
|
+
p {
|
299
|
+
word-wrap: break-word;
|
300
|
+
-ms-word-wrap: break-word;
|
301
|
+
}
|
302
|
+
|
303
|
+
hr {
|
304
|
+
background-color: color-contrast($body-bg, $hero-chulapa-bg-color, $body-color);
|
305
|
+
}
|
306
|
+
|
307
|
+
.header-chulapa-img {
|
308
|
+
background-position: center;
|
309
|
+
background-repeat: no-repeat;
|
310
|
+
background-size: cover;
|
311
|
+
position: relative;
|
312
|
+
height: 20vh;
|
313
|
+
}
|
314
|
+
}
|
315
|
+
|
316
|
+
@include media-breakpoint-up(md) {
|
317
|
+
.header-chulapa h1 {
|
318
|
+
font-size: $display4-size;
|
319
|
+
}
|
320
|
+
}
|
321
|
+
|
322
|
+
|
323
|
+
// Footer
|
324
|
+
@function chulapa-footertop($color1, $color2, $color3) {
|
325
|
+
@if $color1==$color2 {
|
326
|
+
@return $border-width solid $color3;
|
327
|
+
}
|
328
|
+
|
329
|
+
@else {
|
330
|
+
@return 0;
|
331
|
+
}
|
332
|
+
}
|
333
|
+
|
334
|
+
.footer-chulapa {
|
335
|
+
background-color: $footer-chulapa-bg-color;
|
336
|
+
color: $footer-chulapa-text-color;
|
337
|
+
border-top: chulapa-footertop($footer-chulapa-bg-color, $body-bg, $footer-chulapa-text-color);
|
338
|
+
|
339
|
+
a {
|
340
|
+
color: $footer-chulapa-text-color;
|
341
|
+
text-decoration: none;
|
342
|
+
font-weight: bold;
|
343
|
+
|
344
|
+
@include hover-focus() {
|
345
|
+
color: $footer-chulapa-hover-color;
|
346
|
+
}
|
347
|
+
|
348
|
+
}
|
349
|
+
|
350
|
+
.chulapa-footer-sociallink {
|
351
|
+
color: transparent;
|
352
|
+
|
353
|
+
@include hover-focus() {
|
354
|
+
color: $footer-chulapa-hover-color;
|
355
|
+
}
|
356
|
+
}
|
357
|
+
|
358
|
+
.fa-stack {
|
359
|
+
@include hover-focus() {
|
360
|
+
color: $footer-chulapa-icon-hover-color;
|
361
|
+
}
|
362
|
+
}
|
363
|
+
|
364
|
+
.fa-inverse {
|
365
|
+
color: $footer-chulapa-icon-color;
|
366
|
+
}
|
367
|
+
}
|
368
|
+
|
369
|
+
.chulapa-overlay-img {
|
370
|
+
background-position: center;
|
371
|
+
background-repeat: no-repeat;
|
372
|
+
background-size: cover;
|
373
|
+
}
|
374
|
+
|
375
|
+
.chulapa-min-h-10 {
|
376
|
+
min-height: 10vh;
|
377
|
+
}
|
378
|
+
|
379
|
+
.chulapa-min-h-20 {
|
380
|
+
min-height: 20vh;
|
381
|
+
}
|
382
|
+
|
383
|
+
.chulapa-header-image {
|
384
|
+
object-fit: contain;
|
385
|
+
@include fluid-type(height, breakpoint-min("md"), breakpoint-min("lg"), 30vh, 25vh);
|
386
|
+
}
|
387
|
+
//Not used
|
388
|
+
.chulapa-size-base {
|
389
|
+
font-size: $font-size-base;
|
390
|
+
}
|
391
|
+
|
392
|
+
.chulapa-masonry {
|
393
|
+
column-count: 2;
|
394
|
+
column-gap: map-get($spacers, 1);
|
395
|
+
|
396
|
+
@include media-breakpoint-up(md) {
|
397
|
+
column-count: 3;
|
398
|
+
}
|
399
|
+
|
400
|
+
.chulapa-masonry-brick {
|
401
|
+
@extend .card;
|
402
|
+
margin: 0;
|
403
|
+
border: 0;
|
404
|
+
padding: 0;
|
405
|
+
margin-bottom: map-get($spacers, 1);
|
406
|
+
display: inline-block;
|
407
|
+
max-width: 100%;
|
408
|
+
@include border-radius($border-radius);
|
409
|
+
|
410
|
+
}
|
411
|
+
}
|
412
|
+
|
413
|
+
.chulapa-gradient {
|
414
|
+
background-color: rgba($primary, 0.3);
|
415
|
+
background-image: linear-gradient(to bottom right, rgba($light, 0.5), rgba($light, 0.65) 65%, rgba($light, 0.8) 100%);
|
416
|
+
|
417
|
+
}
|
418
|
+
|
419
|
+
.chulapa-avatar-size {
|
420
|
+
border: 1px solid;
|
421
|
+
width: 8vmax;
|
422
|
+
height: 8vmax;
|
423
|
+
@include border-radius(50%,0);
|
424
|
+
}
|
425
|
+
|
426
|
+
|
427
|
+
|
428
|
+
.chulapa-pagination {
|
429
|
+
.fa-stack {
|
430
|
+
color: transparent;
|
431
|
+
|
432
|
+
@include hover-focus() {
|
433
|
+
color: $pagination-chulapa-bg-hover-color;
|
434
|
+
}
|
435
|
+
}
|
436
|
+
|
437
|
+
.fa-inverse {
|
438
|
+
color: $body-color;
|
439
|
+
|
440
|
+
@include hover-focus() {
|
441
|
+
color: $white;
|
442
|
+
}
|
443
|
+
}
|
444
|
+
|
445
|
+
.chulapa-pagination-inner .page-item {
|
446
|
+
border-radius: 0
|
447
|
+
}
|
448
|
+
|
449
|
+
.page-link {
|
450
|
+
color: $pagination-chulapa-text-color;
|
451
|
+
background-color: transparent;
|
452
|
+
|
453
|
+
&:hover {
|
454
|
+
z-index: 2;
|
455
|
+
color: $pagination-chulapa-text-hover-color;
|
456
|
+
background-color: $pagination-chulapa-bg-hover-color;
|
457
|
+
border-color: $pagination-chulapa-bg-hover-color;
|
458
|
+
}
|
459
|
+
|
460
|
+
&:focus {
|
461
|
+
outline: $pagination-focus-outline;
|
462
|
+
box-shadow: $pagination-focus-box-shadow;
|
463
|
+
}
|
464
|
+
}
|
465
|
+
|
466
|
+
.page-item {
|
467
|
+
&.active .page-link {
|
468
|
+
color: $pagination-chulapa-text-hover-color;
|
469
|
+
background-color: $pagination-chulapa-bg-hover-color;
|
470
|
+
border-color: $pagination-chulapa-bg-hover-color;
|
471
|
+
}
|
472
|
+
|
473
|
+
&.disabled .page-link {
|
474
|
+
color: change-color($pagination-chulapa-text-color, $alpha: 0.7);
|
475
|
+
pointer-events: none;
|
476
|
+
// Opinionated: remove the "hand" cursor set previously for .page-link
|
477
|
+
cursor: auto;
|
478
|
+
background-color: transparent;
|
479
|
+
border-color: transparent;
|
480
|
+
}
|
481
|
+
}
|
482
|
+
}
|
483
|
+
|
484
|
+
.chulapa-card-img {
|
485
|
+
@include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);
|
486
|
+
}
|
487
|
+
|
488
|
+
@include media-breakpoint-up(sm) {
|
489
|
+
.chulapa-card-img {
|
490
|
+
@include border-radius($card-inner-border-radius 0 0 $card-inner-border-radius);
|
491
|
+
}
|
492
|
+
}
|
493
|
+
.chulapa-toc-wrapper{
|
494
|
+
|
495
|
+
.list-group-item {
|
496
|
+
background-color: $light;
|
497
|
+
a {
|
498
|
+
color: color-contrast($light);
|
499
|
+
}
|
500
|
+
&:first-child {
|
501
|
+
@include border-top-radius($border-radius-lg);
|
502
|
+
padding-top: map-get($spacers, 2) !important;
|
503
|
+
}
|
504
|
+
|
505
|
+
&:last-child {
|
506
|
+
@include border-bottom-radius($border-radius-lg);
|
507
|
+
padding-bottom: map-get($spacers, 2) !important;
|
508
|
+
}
|
509
|
+
}
|
510
|
+
}
|
511
|
+
|
512
|
+
.chulapa-toc-reset {
|
513
|
+
border:0;
|
514
|
+
ul {
|
515
|
+
padding-left: 0;
|
516
|
+
margin-left: 0;
|
517
|
+
padding-right: 0;
|
518
|
+
margin-right: 0;
|
519
|
+
border: 0;
|
520
|
+
|
521
|
+
li {
|
522
|
+
border-left: 0;
|
523
|
+
border-right: 0;
|
524
|
+
border-bottom: 0;
|
525
|
+
font-size: 0.9 * $font-size-base;
|
526
|
+
font-weight: $font-weight-normal !important;
|
527
|
+
padding-right: 0;
|
528
|
+
margin-right: 0;
|
529
|
+
}
|
530
|
+
}
|
531
|
+
}
|
532
|
+
|
533
|
+
#markdown-toc {
|
534
|
+
@extend .chulapa-toc-wrapper;
|
535
|
+
@extend .list-group;
|
536
|
+
@extend .mb-5;
|
537
|
+
@extend .mx-3;
|
538
|
+
@extend .mx-lg-5;
|
539
|
+
li {
|
540
|
+
@extend .list-group-item;
|
541
|
+
@extend .font-weight-bold;
|
542
|
+
@extend .py-1;
|
543
|
+
@extend .pr-0;
|
544
|
+
@extend .mr-0;
|
545
|
+
@extend .chulapa-toc-reset;
|
546
|
+
}
|
547
|
+
}
|
548
|
+
|
549
|
+
.chulapa-text-line-through {
|
550
|
+
text-decoration: line-through;
|
551
|
+
}
|
552
|
+
|
553
|
+
.chulapa-bg-landingpage {
|
554
|
+
background-color: $landingpage-chulapa-bg-color;
|
555
|
+
header {
|
556
|
+
color: $landingpage-chulapa-text-color;
|
557
|
+
a {
|
558
|
+
color: $landingpage-chulapa-text-color;
|
559
|
+
}
|
560
|
+
}
|
561
|
+
}
|
562
|
+
|
563
|
+
.chulapa-landingpage-color {
|
564
|
+
color: $landingpage-chulapa-text-color;
|
565
|
+
.breadcrumb {
|
566
|
+
.breadcrumb-item {
|
567
|
+
+ .breadcrumb-item {
|
568
|
+
&::before {
|
569
|
+
color: mix($info, $landingpage-chulapa-text-color, 50%);
|
570
|
+
}
|
571
|
+
}
|
572
|
+
&.active {
|
573
|
+
color: $landingpage-chulapa-text-color;
|
574
|
+
}
|
575
|
+
}
|
576
|
+
}
|
577
|
+
|
578
|
+
a {
|
579
|
+
color: mix($info, $landingpage-chulapa-text-color, 50%);
|
580
|
+
}
|
581
|
+
|
582
|
+
table,
|
583
|
+
.chulapaDateSocial {
|
584
|
+
color: $landingpage-chulapa-text-color;
|
585
|
+
|
586
|
+
a {
|
587
|
+
color: $landingpage-chulapa-text-color;
|
588
|
+
}
|
589
|
+
}
|
590
|
+
|
591
|
+
hr {
|
592
|
+
background-color: $landingpage-chulapa-text-color;
|
593
|
+
}
|
594
|
+
|
595
|
+
.chulapa-pagination {
|
596
|
+
.page-link {
|
597
|
+
|
598
|
+
color: $landingpage-chulapa-text-color;
|
599
|
+
|
600
|
+
&:hover {
|
601
|
+
color: $landingpage-chulapa-bg-color;
|
602
|
+
background-color: $landingpage-chulapa-text-color;
|
603
|
+
}
|
604
|
+
}
|
605
|
+
}
|
606
|
+
|
607
|
+
@each $color,
|
608
|
+
$value in $theme-colors {
|
609
|
+
.chulapa-pill-bg-#{$color} {
|
610
|
+
@include badge-variant($value);
|
611
|
+
}
|
612
|
+
}
|
613
|
+
}
|
614
|
+
|
615
|
+
.chulapa-landingpage-badges {
|
616
|
+
i {
|
617
|
+
color: $landingpage-chulapa-text-color;
|
618
|
+
}
|
619
|
+
}
|
620
|
+
|
621
|
+
.chulapa-landingpage-tag {
|
622
|
+
a {
|
623
|
+
border: $border-width solid $landingpage-chulapa-text-color;
|
624
|
+
background-color: transparent;
|
625
|
+
color:$landingpage-chulapa-text-color;
|
626
|
+
}
|
627
|
+
}
|
628
|
+
|
629
|
+
//Navbar modern
|
630
|
+
.navbar-chulapa-fab {
|
631
|
+
label {
|
632
|
+
line-height: unset;
|
633
|
+
}
|
634
|
+
|
635
|
+
|
636
|
+
.navbar-toggler {
|
637
|
+
background-color: $navbar-chulapa-bg-color;
|
638
|
+
border-color: $navbar-chulapa-toggler-border-color;
|
639
|
+
height: 56px;
|
640
|
+
width: 56px;
|
641
|
+
position: fixed;
|
642
|
+
@include border-radius(50%);
|
643
|
+
font-size:1.25rem;
|
644
|
+
z-index: 20000;
|
645
|
+
cursor: pointer;
|
646
|
+
}
|
647
|
+
|
648
|
+
&-background {
|
649
|
+
height: 56px;
|
650
|
+
width: 56px;
|
651
|
+
@include border-radius(50%);
|
652
|
+
position: fixed;
|
653
|
+
background-image: radial-gradient($navbar-chulapa-bg-color, $navbar-chulapa-bg-color);
|
654
|
+
z-index: 10000;
|
655
|
+
transition: transform .8s cubic-bezier(0.86, 0, 0.07, 1);
|
656
|
+
|
657
|
+
}
|
658
|
+
|
659
|
+
&-nav {
|
660
|
+
height: 100vh;
|
661
|
+
position: fixed;
|
662
|
+
top: 0;
|
663
|
+
left: 0;
|
664
|
+
z-index: 15000;
|
665
|
+
opacity: 0;
|
666
|
+
width: 0;
|
667
|
+
transition: all .8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
668
|
+
|
669
|
+
|
670
|
+
}
|
671
|
+
|
672
|
+
.navbar-nav {
|
673
|
+
position: absolute;
|
674
|
+
top: 50%;
|
675
|
+
left: -100vw;
|
676
|
+
width: 100%;
|
677
|
+
transform: translate(100%, -50%);
|
678
|
+
|
679
|
+
}
|
680
|
+
|
681
|
+
.dropdown-menu {
|
682
|
+
background-color: $navbar-chulapa-bg-color;
|
683
|
+
border-color: $navbar-chulapa-text-color;
|
684
|
+
|
685
|
+
.dropdown-item {
|
686
|
+
color: $navbar-chulapa-text-color;
|
687
|
+
|
688
|
+
.nav-link {
|
689
|
+
&.disabled {
|
690
|
+
color: $navbar-chulapa-disabled-color;
|
691
|
+
}
|
692
|
+
|
693
|
+
&.active {
|
694
|
+
color: $navbar-chulapa-active-color;
|
695
|
+
}
|
696
|
+
}
|
697
|
+
}
|
698
|
+
}
|
699
|
+
|
700
|
+
.navbar-brand {
|
701
|
+
color: $navbar-chulapa-brand-color;
|
702
|
+
|
703
|
+
@include hover-focus() {
|
704
|
+
color: $navbar-chulapa-brand-hover-color;
|
705
|
+
}
|
706
|
+
|
707
|
+
|
708
|
+
}
|
709
|
+
|
710
|
+
.nav-link {
|
711
|
+
color: $navbar-chulapa-text-color;
|
712
|
+
|
713
|
+
&:link,
|
714
|
+
&:visited {
|
715
|
+
display: inline-block;
|
716
|
+
background-image: linear-gradient(120deg, transparent 0%, transparent 50%, $navbar-chulapa-hover-color 50%);
|
717
|
+
background-size: 280%;
|
718
|
+
transition: all .4s;
|
719
|
+
|
720
|
+
}
|
721
|
+
|
722
|
+
&:hover,
|
723
|
+
&:active {
|
724
|
+
background-position: 100%;
|
725
|
+
color: $navbar-chulapa-bg-color;
|
726
|
+
transform: translateX(map-get($spacers, 2));
|
727
|
+
}
|
728
|
+
|
729
|
+
&.disabled {
|
730
|
+
color: $navbar-chulapa-disabled-color;
|
731
|
+
}
|
732
|
+
|
733
|
+
&.active {
|
734
|
+
color: $navbar-chulapa-active-color;
|
735
|
+
|
736
|
+
@include hover-focus() {
|
737
|
+
color: $navbar-chulapa-text-color;
|
738
|
+
}
|
739
|
+
}
|
740
|
+
}
|
741
|
+
|
742
|
+
@include media-breakpoint-down(lg) {
|
743
|
+
|
744
|
+
.navbar-toggler {
|
745
|
+
bottom: 1.05*map-get($spacers, 5);
|
746
|
+
right: map-get($spacers, 4);
|
747
|
+
}
|
748
|
+
|
749
|
+
.navbar-chulapa-fab-background {
|
750
|
+
bottom: 1.05*map-get($spacers, 5);
|
751
|
+
right: map-get($spacers, 4);
|
752
|
+
}
|
753
|
+
|
754
|
+
|
755
|
+
}
|
756
|
+
|
757
|
+
@include media-breakpoint-up(lg) {
|
758
|
+
|
759
|
+
|
760
|
+
.navbar-toggler {
|
761
|
+
top: map-get($spacers, 4);
|
762
|
+
right: 2*map-get($spacers, 5);
|
763
|
+
}
|
764
|
+
|
765
|
+
.navbar-chulapa-fab-background {
|
766
|
+
top: map-get($spacers, 4);
|
767
|
+
right: 2*map-get($spacers, 5);
|
768
|
+
}
|
769
|
+
|
770
|
+
|
771
|
+
}
|
772
|
+
|
773
|
+
&-button:checked~&-background {
|
774
|
+
transform: scale(80);
|
775
|
+
}
|
776
|
+
|
777
|
+
&-button:checked~&-nav {
|
778
|
+
opacity: 1;
|
779
|
+
width: 100%;
|
780
|
+
|
781
|
+
.navbar-nav {
|
782
|
+
transform: translate(100vw, -50%);
|
783
|
+
}
|
784
|
+
|
785
|
+
}
|
786
|
+
|
787
|
+
|
788
|
+
|
789
|
+
.navbar-toggler-icon {
|
790
|
+
position: relative;
|
791
|
+
|
792
|
+
&,
|
793
|
+
&::before,
|
794
|
+
&::after {
|
795
|
+
width: 2rem;
|
796
|
+
height: 2px;
|
797
|
+
background-color: $navbar-chulapa-toggler-color;
|
798
|
+
display: inline-block;
|
799
|
+
}
|
800
|
+
|
801
|
+
&::before,
|
802
|
+
&::after {
|
803
|
+
content: '';
|
804
|
+
position: absolute;
|
805
|
+
left: 0;
|
806
|
+
transition: all .2s;
|
807
|
+
}
|
808
|
+
|
809
|
+
&::before {
|
810
|
+
top: -.6rem;
|
811
|
+
}
|
812
|
+
|
813
|
+
&::after {
|
814
|
+
top: .6rem;
|
815
|
+
}
|
816
|
+
}
|
817
|
+
|
818
|
+
&-button:checked+.navbar-toggler .navbar-toggler-icon {
|
819
|
+
background-color: transparent;
|
820
|
+
}
|
821
|
+
|
822
|
+
&-button:checked+.navbar-toggler .navbar-toggler-icon::before {
|
823
|
+
top: 0;
|
824
|
+
transform: rotate(135deg);
|
825
|
+
}
|
826
|
+
|
827
|
+
&-button:checked+.navbar-toggler .navbar-toggler-icon::after {
|
828
|
+
top: 0;
|
829
|
+
transform: rotate(-135deg);
|
830
|
+
}
|
831
|
+
}
|
832
|
+
|
833
|
+
// Repositioning Clipboard button
|
834
|
+
.btn-chulapa-copy-code {
|
835
|
+
position: absolute;
|
836
|
+
right: 30px;
|
837
|
+
}
|
838
|
+
|
839
|
+
// Normalize carousel
|
840
|
+
|
841
|
+
.chulapa-carousel {
|
842
|
+
height: 75vh;
|
843
|
+
object-fit:contain;
|
844
|
+
}
|