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,26 @@
|
|
1
|
+
/*! Tophat `Graymor` Bootstrap 4.3.1 theme */
|
2
|
+
@import url(https://fonts.googleapis.com/css?family=Muli:200,300,400,700);
|
3
|
+
@import url(https://fonts.googleapis.com/css?family=Oswald:200,300,400,700);
|
4
|
+
|
5
|
+
$headings-font-family:Oswald;
|
6
|
+
$font-family-base:Muli;
|
7
|
+
|
8
|
+
$primary:#2f3c48;
|
9
|
+
$secondary:#6f7f8c;
|
10
|
+
$success:#3e4d59;
|
11
|
+
$danger:#cc330d;
|
12
|
+
$info:#5c8f94;
|
13
|
+
$warning:#6e9fa5;
|
14
|
+
$light:#eceeec;
|
15
|
+
$dark:#1e2b37;
|
16
|
+
$enable-rounded:false;
|
17
|
+
|
18
|
+
|
19
|
+
// Add SASS theme customizations here..
|
20
|
+
$link-color: mix($primary, #007bff, 70%);
|
21
|
+
|
22
|
+
//Custom hero
|
23
|
+
$hero-chulapa-bg-color: $primary;
|
24
|
+
$navbar-chulapa-toggler-color: rgba(white, 0.4);
|
25
|
+
$navbar-chulapa-toggler-border-color: rgba(white, 0.1);
|
26
|
+
$navbar-chulapa-toggler-color-bg: transparent;
|
@@ -0,0 +1,17 @@
|
|
1
|
+
/*! Themestr.app `Hootstrap` Bootstrap 4.3.1 theme */
|
2
|
+
@import url(https://fonts.googleapis.com/css?family=Open+Sans:200,300,400,700);
|
3
|
+
$font-family-base:Open Sans;
|
4
|
+
@import url(https://fonts.googleapis.com/css?family=Autour+One:200,300,400,700);
|
5
|
+
$headings-font-family:Autour One;
|
6
|
+
|
7
|
+
$primary:#528078;
|
8
|
+
$secondary:#eed75a;
|
9
|
+
$success:#FEC100;
|
10
|
+
$danger:#703B3B;
|
11
|
+
$info:#63e792;
|
12
|
+
$warning:#FFE869;
|
13
|
+
$light:#FDFBF7;
|
14
|
+
$dark:#555555;
|
15
|
+
|
16
|
+
|
17
|
+
// Add SASS theme customizations here..
|
@@ -0,0 +1,142 @@
|
|
1
|
+
/*! Journal 4.5.0 by Bootswatch */
|
2
|
+
// Journal 4.5.0
|
3
|
+
// Bootswatch
|
4
|
+
|
5
|
+
//
|
6
|
+
// Color system
|
7
|
+
//
|
8
|
+
|
9
|
+
$white: #fff !default;
|
10
|
+
$gray-100: #f8f9fa !default;
|
11
|
+
$gray-200: #eee !default;
|
12
|
+
$gray-300: #dee2e6 !default;
|
13
|
+
$gray-400: #ced4da !default;
|
14
|
+
$gray-500: #aaa !default;
|
15
|
+
$gray-600: #777 !default;
|
16
|
+
$gray-700: #495057 !default;
|
17
|
+
$gray-800: #333 !default;
|
18
|
+
$gray-900: #222 !default;
|
19
|
+
$black: #000 !default;
|
20
|
+
|
21
|
+
$blue: #EB6864 !default;
|
22
|
+
$indigo: #6610f2 !default;
|
23
|
+
$purple: #6f42c1 !default;
|
24
|
+
$pink: #e83e8c !default;
|
25
|
+
$red: #F57A00 !default;
|
26
|
+
$orange: #fd7e14 !default;
|
27
|
+
$yellow: #F5E625 !default;
|
28
|
+
$green: #22B24C !default;
|
29
|
+
$teal: #20c997 !default;
|
30
|
+
$cyan: #369 !default;
|
31
|
+
|
32
|
+
$primary: $blue !default;
|
33
|
+
$secondary: $gray-500 !default;
|
34
|
+
$success: $green !default;
|
35
|
+
$info: $cyan !default;
|
36
|
+
$warning: $yellow !default;
|
37
|
+
$danger: $red !default;
|
38
|
+
$light: $gray-100 !default;
|
39
|
+
$dark: $gray-900 !default;
|
40
|
+
|
41
|
+
// Fonts
|
42
|
+
|
43
|
+
$headings-font-family: "News Cycle",
|
44
|
+
"Arial Narrow Bold",
|
45
|
+
sans-serif !default;
|
46
|
+
$headings-font-weight: 700 !default;
|
47
|
+
$headings-line-height: 1.1 !default;
|
48
|
+
|
49
|
+
// Buttons
|
50
|
+
|
51
|
+
$input-btn-padding-x: 1rem !default;
|
52
|
+
|
53
|
+
// Navbar
|
54
|
+
|
55
|
+
$navbar-light-color: rgba($black, .7) !default;
|
56
|
+
$navbar-light-hover-color: $black !default;
|
57
|
+
$navbar-light-active-color: $black !default;
|
58
|
+
|
59
|
+
// Pagination
|
60
|
+
|
61
|
+
$pagination-hover-color: $white !default;
|
62
|
+
$pagination-hover-bg: $primary !default;
|
63
|
+
$pagination-hover-border-color: $primary !default;
|
64
|
+
|
65
|
+
// Journal 4.5.0
|
66
|
+
// Bootswatch
|
67
|
+
|
68
|
+
|
69
|
+
// Variables ===================================================================
|
70
|
+
|
71
|
+
$web-font-path: "https://fonts.googleapis.com/css?family=News+Cycle:400,700&display=swap" !default;
|
72
|
+
@import url($web-font-path);
|
73
|
+
|
74
|
+
// Navbar ======================================================================
|
75
|
+
|
76
|
+
.bg-dark {
|
77
|
+
background-color: #000 !important;
|
78
|
+
}
|
79
|
+
|
80
|
+
.bg-light {
|
81
|
+
background-color: $white !important;
|
82
|
+
color: $black;
|
83
|
+
border: 1px solid $gray-200;
|
84
|
+
|
85
|
+
&.navbar-fixed-top {
|
86
|
+
border-width: 0 0 1px 0;
|
87
|
+
}
|
88
|
+
|
89
|
+
&.navbar-fixed-bottom {
|
90
|
+
border-width: 1px 0 0 0;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
.navbar {
|
95
|
+
font-size: 18px;
|
96
|
+
font-family: $headings-font-family;
|
97
|
+
font-weight: $headings-font-weight;
|
98
|
+
}
|
99
|
+
|
100
|
+
.navbar-brand {
|
101
|
+
padding-top: 0.5rem;
|
102
|
+
font-size: inherit;
|
103
|
+
font-weight: $headings-font-weight;
|
104
|
+
text-transform: uppercase;
|
105
|
+
}
|
106
|
+
|
107
|
+
// Buttons =====================================================================
|
108
|
+
|
109
|
+
.btn {
|
110
|
+
font-family: $headings-font-family !important;
|
111
|
+
font-weight: $headings-font-weight !important;
|
112
|
+
|
113
|
+
&-secondary,
|
114
|
+
&-warning {
|
115
|
+
color: $white !important;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
// Typography ==================================================================
|
120
|
+
|
121
|
+
// Tables ======================================================================
|
122
|
+
|
123
|
+
// Forms =======================================================================
|
124
|
+
|
125
|
+
// Navs ========================================================================
|
126
|
+
|
127
|
+
.pagination {
|
128
|
+
a:hover {
|
129
|
+
text-decoration: none;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
|
133
|
+
// Indicators ==================================================================
|
134
|
+
|
135
|
+
// Progress bars ===============================================================
|
136
|
+
|
137
|
+
// Containers ==================================================================
|
138
|
+
|
139
|
+
$navbar-chulapa-bg-color: $white;
|
140
|
+
$navbar-chulapa-hover-color: lighten($primary, 10%);
|
141
|
+
$footer-chulapa-text-color: $black;
|
142
|
+
$footer-chulapa-hover-color:$navbar-chulapa-hover-color;
|
@@ -0,0 +1,377 @@
|
|
1
|
+
/*! Lux 4.5.0 by Bootswatch */
|
2
|
+
|
3
|
+
// Lux 4.5.0
|
4
|
+
// Bootswatch
|
5
|
+
|
6
|
+
//
|
7
|
+
// Color system
|
8
|
+
//
|
9
|
+
|
10
|
+
$white: #fff !default;
|
11
|
+
$gray-100: #f8f9fa !default;
|
12
|
+
$gray-200: #f7f7f9 !default;
|
13
|
+
$gray-300: #eceeef !default;
|
14
|
+
$gray-400: #ced4da !default;
|
15
|
+
$gray-500: #adb5bd !default;
|
16
|
+
$gray-600: #919aa1 !default;
|
17
|
+
$gray-700: #55595c !default;
|
18
|
+
$gray-800: #343a40 !default;
|
19
|
+
$gray-900: #1a1a1a !default;
|
20
|
+
$black: #000 !default;
|
21
|
+
|
22
|
+
$blue: #007bff !default;
|
23
|
+
$indigo: #6610f2 !default;
|
24
|
+
$purple: #6f42c1 !default;
|
25
|
+
$pink: #e83e8c !default;
|
26
|
+
$red: #d9534f !default;
|
27
|
+
$orange: #fd7e14 !default;
|
28
|
+
$yellow: #f0ad4e !default;
|
29
|
+
$green: #4BBF73 !default;
|
30
|
+
$teal: #20c997 !default;
|
31
|
+
$cyan: #1F9BCF !default;
|
32
|
+
|
33
|
+
$primary: $gray-900 !default;
|
34
|
+
$secondary: $white !default;
|
35
|
+
$success: $green !default;
|
36
|
+
$info: $cyan !default;
|
37
|
+
$warning: $yellow !default;
|
38
|
+
$danger: $red !default;
|
39
|
+
$light: $white !default;
|
40
|
+
$dark: $gray-800 !default;
|
41
|
+
|
42
|
+
$yiq-contrasted-threshold: 185 !default;
|
43
|
+
|
44
|
+
// Options
|
45
|
+
|
46
|
+
$enable-rounded: false ;
|
47
|
+
|
48
|
+
// Body
|
49
|
+
|
50
|
+
$body-color: $gray-700 !default;
|
51
|
+
|
52
|
+
// Components
|
53
|
+
|
54
|
+
$border-radius: 0 !default;
|
55
|
+
$border-radius-lg: 0 !default;
|
56
|
+
$border-radius-sm: 0 !default;
|
57
|
+
|
58
|
+
// Fonts
|
59
|
+
|
60
|
+
$font-family-sans-serif: "Nunito Sans",
|
61
|
+
-apple-system,
|
62
|
+
BlinkMacSystemFont,
|
63
|
+
"Segoe UI",
|
64
|
+
Roboto,
|
65
|
+
"Helvetica Neue",
|
66
|
+
Arial,
|
67
|
+
sans-serif,
|
68
|
+
"Apple Color Emoji",
|
69
|
+
"Segoe UI Emoji",
|
70
|
+
"Segoe UI Symbol" !default;
|
71
|
+
|
72
|
+
$font-size-base: 0.875rem !default;
|
73
|
+
|
74
|
+
$h1-font-size: 2rem !default;
|
75
|
+
$h2-font-size: 1.75rem !default;
|
76
|
+
$h3-font-size: 1.5rem !default;
|
77
|
+
$h4-font-size: 1.25rem !default;
|
78
|
+
$h5-font-size: 1rem !default;
|
79
|
+
$h6-font-size: 0.75rem !default;
|
80
|
+
|
81
|
+
$headings-font-weight: 600 !default;
|
82
|
+
$headings-color: $gray-900 !default;
|
83
|
+
|
84
|
+
// Tables
|
85
|
+
|
86
|
+
$table-border-color: rgba(0, 0, 0, 0.05) !default;
|
87
|
+
|
88
|
+
// Buttons + Forms
|
89
|
+
|
90
|
+
$input-btn-border-width: 0px !default;
|
91
|
+
|
92
|
+
// Buttons
|
93
|
+
|
94
|
+
$btn-line-height: 1.5rem !default;
|
95
|
+
|
96
|
+
$input-btn-padding-y: 0.75rem !default;
|
97
|
+
$input-btn-padding-x: 1.5rem !default;
|
98
|
+
|
99
|
+
$input-btn-padding-y-sm: .5rem !default;
|
100
|
+
$input-btn-padding-x-sm: 1rem !default;
|
101
|
+
|
102
|
+
$input-btn-padding-y-lg: 2rem !default;
|
103
|
+
$input-btn-padding-x-lg: 2rem !default;
|
104
|
+
|
105
|
+
$btn-font-weight: 600 !default;
|
106
|
+
|
107
|
+
// Forms
|
108
|
+
|
109
|
+
$input-line-height: 1.5 !default;
|
110
|
+
|
111
|
+
$input-bg: $gray-200 !default;
|
112
|
+
$input-disabled-bg: $gray-300 !default;
|
113
|
+
|
114
|
+
$input-group-addon-bg: $gray-300 !default;
|
115
|
+
|
116
|
+
// Navbar
|
117
|
+
|
118
|
+
$navbar-padding-y: 1.5rem !default;
|
119
|
+
|
120
|
+
$navbar-dark-hover-color: $white !default;
|
121
|
+
|
122
|
+
$navbar-light-color: rgba($black, .3) !default;
|
123
|
+
$navbar-light-hover-color: $gray-900 !default;
|
124
|
+
$navbar-light-active-color: $gray-900 !default;
|
125
|
+
|
126
|
+
// Pagination
|
127
|
+
|
128
|
+
$pagination-border-color: transparent !default;
|
129
|
+
|
130
|
+
$pagination-hover-border-color: $pagination-border-color !default;
|
131
|
+
|
132
|
+
$pagination-disabled-border-color: $pagination-border-color !default;
|
133
|
+
|
134
|
+
// Breadcrumbs
|
135
|
+
|
136
|
+
$breadcrumb-bg: transparent !default;
|
137
|
+
|
138
|
+
// Lux 4.5.0
|
139
|
+
// Bootswatch
|
140
|
+
$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
|
141
|
+
$font-size-lg: $font-size-base * 1.25 !default;
|
142
|
+
$font-size-sm: $font-size-base * .875 !default;
|
143
|
+
|
144
|
+
// Variables ===================================================================
|
145
|
+
|
146
|
+
$web-font-path: "https://fonts.googleapis.com/css?family=Nunito+Sans:400,600&display=swap" !default;
|
147
|
+
@import url($web-font-path);
|
148
|
+
|
149
|
+
// Navbar ======================================================================
|
150
|
+
|
151
|
+
.navbar {
|
152
|
+
font-size: $font-size-sm;
|
153
|
+
text-transform: uppercase;
|
154
|
+
font-weight: 600;
|
155
|
+
|
156
|
+
&-nav {
|
157
|
+
.nav-link {
|
158
|
+
padding-top: .715rem;
|
159
|
+
padding-bottom: .715rem;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
|
163
|
+
&-brand {
|
164
|
+
margin-right: 2rem;
|
165
|
+
}
|
166
|
+
}
|
167
|
+
|
168
|
+
.bg-primary {
|
169
|
+
background-color: $primary !important;
|
170
|
+
}
|
171
|
+
|
172
|
+
.bg-light {
|
173
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
174
|
+
|
175
|
+
&.navbar-fixed-top {
|
176
|
+
border-width: 0 0 1px 0;
|
177
|
+
}
|
178
|
+
|
179
|
+
&.navbar-bottom-top {
|
180
|
+
border-width: 1px 0 0 0;
|
181
|
+
}
|
182
|
+
}
|
183
|
+
|
184
|
+
.nav-item {
|
185
|
+
margin-right: 2rem;
|
186
|
+
}
|
187
|
+
|
188
|
+
// Buttons =====================================================================
|
189
|
+
|
190
|
+
.btn {
|
191
|
+
font-size: $font-size-sm;
|
192
|
+
text-transform: uppercase;
|
193
|
+
|
194
|
+
&-sm {
|
195
|
+
font-size: 10px;
|
196
|
+
}
|
197
|
+
|
198
|
+
&-warning {
|
199
|
+
|
200
|
+
&,
|
201
|
+
&:hover,
|
202
|
+
&:not([disabled]):not(.disabled):active,
|
203
|
+
&:focus {
|
204
|
+
color: $white;
|
205
|
+
}
|
206
|
+
}
|
207
|
+
}
|
208
|
+
|
209
|
+
.btn-outline-secondary {
|
210
|
+
border-color: $gray-600;
|
211
|
+
color: $gray-600;
|
212
|
+
|
213
|
+
&:not([disabled]):not(.disabled):hover,
|
214
|
+
&:not([disabled]):not(.disabled):focus,
|
215
|
+
&:not([disabled]):not(.disabled):active {
|
216
|
+
background-color: $gray-400;
|
217
|
+
border-color: $gray-400;
|
218
|
+
color: $white;
|
219
|
+
}
|
220
|
+
|
221
|
+
&:not([disabled]):not(.disabled):focus {
|
222
|
+
box-shadow: 0 0 0 0.2rem rgba($gray-400, 0.5);
|
223
|
+
}
|
224
|
+
}
|
225
|
+
|
226
|
+
[class*="btn-outline-"] {
|
227
|
+
border-width: 2px;
|
228
|
+
}
|
229
|
+
|
230
|
+
.border-secondary {
|
231
|
+
border: 1px solid $gray-400 !important;
|
232
|
+
}
|
233
|
+
|
234
|
+
// Typography ==================================================================
|
235
|
+
|
236
|
+
body {
|
237
|
+
font-weight: 200;
|
238
|
+
letter-spacing: 1px;
|
239
|
+
}
|
240
|
+
|
241
|
+
h1,
|
242
|
+
h2,
|
243
|
+
h3,
|
244
|
+
h4,
|
245
|
+
h5,
|
246
|
+
h6 {
|
247
|
+
text-transform: uppercase;
|
248
|
+
letter-spacing: 3px;
|
249
|
+
}
|
250
|
+
|
251
|
+
.text-secondary {
|
252
|
+
color: $body-color !important;
|
253
|
+
}
|
254
|
+
|
255
|
+
// Tables ======================================================================
|
256
|
+
|
257
|
+
th {
|
258
|
+
font-size: $font-size-sm;
|
259
|
+
text-transform: uppercase;
|
260
|
+
}
|
261
|
+
|
262
|
+
.table {
|
263
|
+
|
264
|
+
th,
|
265
|
+
td {
|
266
|
+
padding: 1.5rem;
|
267
|
+
}
|
268
|
+
|
269
|
+
&-sm {
|
270
|
+
|
271
|
+
th,
|
272
|
+
td {
|
273
|
+
padding: 0.75rem;
|
274
|
+
}
|
275
|
+
}
|
276
|
+
}
|
277
|
+
|
278
|
+
// Forms =======================================================================
|
279
|
+
|
280
|
+
|
281
|
+
.custom-switch {
|
282
|
+
|
283
|
+
.custom-control-label {
|
284
|
+
&::after {
|
285
|
+
top: calc(0.15625rem + 2px);
|
286
|
+
left: calc(-2.25rem + 2px);
|
287
|
+
width: calc(1rem - 4px);
|
288
|
+
height: calc(1rem - 4px);
|
289
|
+
}
|
290
|
+
}
|
291
|
+
}
|
292
|
+
|
293
|
+
// Navs ========================================================================
|
294
|
+
|
295
|
+
.dropdown-menu {
|
296
|
+
font-size: $font-size-sm;
|
297
|
+
text-transform: none;
|
298
|
+
}
|
299
|
+
|
300
|
+
// Indicators ==================================================================
|
301
|
+
|
302
|
+
.badge {
|
303
|
+
padding-top: 0.28rem;
|
304
|
+
|
305
|
+
&-pill {
|
306
|
+
border-radius: 10rem;
|
307
|
+
}
|
308
|
+
}
|
309
|
+
|
310
|
+
// Progress bars ===============================================================
|
311
|
+
|
312
|
+
// Containers ==================================================================
|
313
|
+
|
314
|
+
.list-group-item {
|
315
|
+
|
316
|
+
h1,
|
317
|
+
h2,
|
318
|
+
h3,
|
319
|
+
h4,
|
320
|
+
h5,
|
321
|
+
h6,
|
322
|
+
.h1,
|
323
|
+
.h2,
|
324
|
+
.h3,
|
325
|
+
.h4,
|
326
|
+
.h5,
|
327
|
+
.h6 {
|
328
|
+
color: inherit;
|
329
|
+
}
|
330
|
+
}
|
331
|
+
|
332
|
+
.card {
|
333
|
+
|
334
|
+
&-title,
|
335
|
+
&-header {
|
336
|
+
color: inherit;
|
337
|
+
}
|
338
|
+
}
|
339
|
+
|
340
|
+
//CUSTOM SASS
|
341
|
+
$enable-rounded: false;
|
342
|
+
$white: white;
|
343
|
+
$link-color: $cyan;
|
344
|
+
|
345
|
+
.navbar-chulapa {
|
346
|
+
.dropdown-item {
|
347
|
+
font-size: $font-size-sm;
|
348
|
+
text-transform: uppercase;
|
349
|
+
font-weight: 600;
|
350
|
+
}
|
351
|
+
|
352
|
+
}
|
353
|
+
|
354
|
+
.footer-chulapa {
|
355
|
+
text-transform: uppercase;
|
356
|
+
}
|
357
|
+
|
358
|
+
.chulapa-toc-wrapper {
|
359
|
+
text-transform: uppercase;
|
360
|
+
}
|
361
|
+
|
362
|
+
|
363
|
+
.hero-chulapa-image {
|
364
|
+
h1 {
|
365
|
+
color: white !important;
|
366
|
+
}
|
367
|
+
}
|
368
|
+
|
369
|
+
.hero-chulapa {
|
370
|
+
h1 {
|
371
|
+
color: white !important;
|
372
|
+
}
|
373
|
+
}
|
374
|
+
|
375
|
+
.chulapa-subtitle {
|
376
|
+
text-transform: uppercase;
|
377
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
/*! Tophat `Lymcha` Bootstrap 4.3.1 theme */
|
2
|
+
@import url(https://fonts.googleapis.com/css?family=Muli:200,300,400,700);
|
3
|
+
$headings-font-family:Muli;
|
4
|
+
|
5
|
+
$primary:#07689F;
|
6
|
+
$secondary:#C9D6DF;
|
7
|
+
$success:#11D3BC;
|
8
|
+
$danger:#F67280;
|
9
|
+
$info:#A2D5F2;
|
10
|
+
$warning:#FF7E67;
|
11
|
+
$light:#FAFAFA;
|
12
|
+
$dark:#4e4e4e;
|
13
|
+
|
14
|
+
// Add SASS theme customizations here..
|