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,173 @@
|
|
1
|
+
.highlight table td { padding: 5px; }
|
2
|
+
.highlight table pre { margin: 0; }
|
3
|
+
.highlight pre {
|
4
|
+
color: #faf6e4;
|
5
|
+
background-color: #122b3b;
|
6
|
+
}
|
7
|
+
.highlight .gl {
|
8
|
+
color: #dee5e7;
|
9
|
+
background-color: #4e5d62;
|
10
|
+
}
|
11
|
+
.highlight .gp {
|
12
|
+
color: #a8e1fe;
|
13
|
+
font-weight: bold;
|
14
|
+
}
|
15
|
+
.highlight .c, .highlight .cd, .highlight .cm, .highlight .c1, .highlight .cs {
|
16
|
+
color: #6c8b9f;
|
17
|
+
font-style: italic;
|
18
|
+
}
|
19
|
+
.highlight .cp {
|
20
|
+
color: #b2fd6d;
|
21
|
+
font-weight: bold;
|
22
|
+
font-style: italic;
|
23
|
+
}
|
24
|
+
.highlight .err {
|
25
|
+
color: #fefeec;
|
26
|
+
background-color: #cc0000;
|
27
|
+
}
|
28
|
+
.highlight .gr {
|
29
|
+
color: #cc0000;
|
30
|
+
font-weight: bold;
|
31
|
+
font-style: italic;
|
32
|
+
}
|
33
|
+
.highlight .k, .highlight .kd, .highlight .kv {
|
34
|
+
color: #f6dd62;
|
35
|
+
font-weight: bold;
|
36
|
+
}
|
37
|
+
.highlight .o, .highlight .ow {
|
38
|
+
color: #4df4ff;
|
39
|
+
font-weight: bold;
|
40
|
+
}
|
41
|
+
.highlight .p, .highlight .pi {
|
42
|
+
color: #4df4ff;
|
43
|
+
}
|
44
|
+
.highlight .gd {
|
45
|
+
color: #cc0000;
|
46
|
+
}
|
47
|
+
.highlight .gi {
|
48
|
+
color: #b2fd6d;
|
49
|
+
}
|
50
|
+
.highlight .ge {
|
51
|
+
font-style: italic;
|
52
|
+
}
|
53
|
+
.highlight .gs {
|
54
|
+
font-weight: bold;
|
55
|
+
}
|
56
|
+
.highlight .gt {
|
57
|
+
color: #dee5e7;
|
58
|
+
background-color: #4e5d62;
|
59
|
+
}
|
60
|
+
.highlight .kc {
|
61
|
+
color: #f696db;
|
62
|
+
font-weight: bold;
|
63
|
+
}
|
64
|
+
.highlight .kn {
|
65
|
+
color: #ffb000;
|
66
|
+
font-weight: bold;
|
67
|
+
}
|
68
|
+
.highlight .kp {
|
69
|
+
color: #ffb000;
|
70
|
+
font-weight: bold;
|
71
|
+
}
|
72
|
+
.highlight .kr {
|
73
|
+
color: #ffb000;
|
74
|
+
font-weight: bold;
|
75
|
+
}
|
76
|
+
.highlight .gh {
|
77
|
+
color: #ffb000;
|
78
|
+
font-weight: bold;
|
79
|
+
}
|
80
|
+
.highlight .gu {
|
81
|
+
color: #ffb000;
|
82
|
+
font-weight: bold;
|
83
|
+
}
|
84
|
+
.highlight .kt {
|
85
|
+
color: #b2fd6d;
|
86
|
+
font-weight: bold;
|
87
|
+
}
|
88
|
+
.highlight .no {
|
89
|
+
color: #b2fd6d;
|
90
|
+
font-weight: bold;
|
91
|
+
}
|
92
|
+
.highlight .nc {
|
93
|
+
color: #b2fd6d;
|
94
|
+
font-weight: bold;
|
95
|
+
}
|
96
|
+
.highlight .nd {
|
97
|
+
color: #b2fd6d;
|
98
|
+
font-weight: bold;
|
99
|
+
}
|
100
|
+
.highlight .nn {
|
101
|
+
color: #b2fd6d;
|
102
|
+
font-weight: bold;
|
103
|
+
}
|
104
|
+
.highlight .bp {
|
105
|
+
color: #b2fd6d;
|
106
|
+
font-weight: bold;
|
107
|
+
}
|
108
|
+
.highlight .ne {
|
109
|
+
color: #b2fd6d;
|
110
|
+
font-weight: bold;
|
111
|
+
}
|
112
|
+
.highlight .nl {
|
113
|
+
color: #ffb000;
|
114
|
+
font-weight: bold;
|
115
|
+
}
|
116
|
+
.highlight .nt {
|
117
|
+
color: #ffb000;
|
118
|
+
font-weight: bold;
|
119
|
+
}
|
120
|
+
.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mb, .highlight .mx {
|
121
|
+
color: #f696db;
|
122
|
+
font-weight: bold;
|
123
|
+
}
|
124
|
+
.highlight .ld {
|
125
|
+
color: #f696db;
|
126
|
+
font-weight: bold;
|
127
|
+
}
|
128
|
+
.highlight .ss {
|
129
|
+
color: #f696db;
|
130
|
+
font-weight: bold;
|
131
|
+
}
|
132
|
+
.highlight .s, .highlight .sb, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .sr, .highlight .s1 {
|
133
|
+
color: #fff0a6;
|
134
|
+
font-weight: bold;
|
135
|
+
}
|
136
|
+
.highlight .se {
|
137
|
+
color: #4df4ff;
|
138
|
+
font-weight: bold;
|
139
|
+
}
|
140
|
+
.highlight .sc {
|
141
|
+
color: #4df4ff;
|
142
|
+
font-weight: bold;
|
143
|
+
}
|
144
|
+
.highlight .si {
|
145
|
+
color: #4df4ff;
|
146
|
+
font-weight: bold;
|
147
|
+
}
|
148
|
+
.highlight .nb {
|
149
|
+
font-weight: bold;
|
150
|
+
}
|
151
|
+
.highlight .ni {
|
152
|
+
color: #999999;
|
153
|
+
font-weight: bold;
|
154
|
+
}
|
155
|
+
.highlight .w {
|
156
|
+
color: #BBBBBB;
|
157
|
+
}
|
158
|
+
.highlight .go {
|
159
|
+
color: #BBBBBB;
|
160
|
+
}
|
161
|
+
.highlight .nf {
|
162
|
+
color: #a8e1fe;
|
163
|
+
}
|
164
|
+
.highlight .py {
|
165
|
+
color: #a8e1fe;
|
166
|
+
}
|
167
|
+
.highlight .na {
|
168
|
+
color: #a8e1fe;
|
169
|
+
}
|
170
|
+
.highlight .nv, .highlight .vc, .highlight .vg, .highlight .vi {
|
171
|
+
color: #a8e1fe;
|
172
|
+
font-weight: bold;
|
173
|
+
}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
4
|
+
.highlight .k { font-weight: bold } /* Keyword */
|
5
|
+
.highlight .o { font-weight: bold } /* Operator */
|
6
|
+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
|
8
|
+
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
9
|
+
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
10
|
+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
11
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
12
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
13
|
+
.highlight .gh { color: #999999 } /* Generic.Heading */
|
14
|
+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
15
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
16
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
17
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
18
|
+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
19
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
20
|
+
.highlight .kc { font-weight: bold } /* Keyword.Constant */
|
21
|
+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #009999 } /* Literal.Number */
|
27
|
+
.highlight .s { color: #bb8844 } /* Literal.String */
|
28
|
+
.highlight .na { color: #008080 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #999999 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
|
31
|
+
.highlight .no { color: #008080 } /* Name.Constant */
|
32
|
+
.highlight .ni { color: #800080 } /* Name.Entity */
|
33
|
+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
34
|
+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
|
35
|
+
.highlight .nn { color: #555555 } /* Name.Namespace */
|
36
|
+
.highlight .nt { color: #000080 } /* Name.Tag */
|
37
|
+
.highlight .nv { color: #008080 } /* Name.Variable */
|
38
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
39
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
40
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
41
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
42
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
43
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
44
|
+
.highlight .sb { color: #bb8844 } /* Literal.String.Backtick */
|
45
|
+
.highlight .sc { color: #bb8844 } /* Literal.String.Char */
|
46
|
+
.highlight .sd { color: #bb8844 } /* Literal.String.Doc */
|
47
|
+
.highlight .s2 { color: #bb8844 } /* Literal.String.Double */
|
48
|
+
.highlight .se { color: #bb8844 } /* Literal.String.Escape */
|
49
|
+
.highlight .sh { color: #bb8844 } /* Literal.String.Heredoc */
|
50
|
+
.highlight .si { color: #bb8844 } /* Literal.String.Interpol */
|
51
|
+
.highlight .sx { color: #bb8844 } /* Literal.String.Other */
|
52
|
+
.highlight .sr { color: #808000 } /* Literal.String.Regex */
|
53
|
+
.highlight .s1 { color: #bb8844 } /* Literal.String.Single */
|
54
|
+
.highlight .ss { color: #bb8844 } /* Literal.String.Symbol */
|
55
|
+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
56
|
+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
|
57
|
+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
|
58
|
+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
|
59
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,70 @@
|
|
1
|
+
.highlight pre { background-color: #222222 }
|
2
|
+
.highlight .hll { background-color: #222222 }
|
3
|
+
.highlight .c { color: #000080 } /* Comment */
|
4
|
+
.highlight .err { color: #cccccc; border: 1px solid #FF0000 } /* Error */
|
5
|
+
.highlight .g { color: #cccccc } /* Generic */
|
6
|
+
.highlight .k { color: #cdcd00 } /* Keyword */
|
7
|
+
.highlight .l { color: #cccccc } /* Literal */
|
8
|
+
.highlight .n { color: #cccccc } /* Name */
|
9
|
+
.highlight .o { color: #3399cc } /* Operator */
|
10
|
+
.highlight .x { color: #cccccc } /* Other */
|
11
|
+
.highlight .p { color: #cccccc } /* Punctuation */
|
12
|
+
.highlight .cm { color: #000080 } /* Comment.Multiline */
|
13
|
+
.highlight .cp { color: #000080 } /* Comment.Preproc */
|
14
|
+
.highlight .c1 { color: #000080 } /* Comment.Single */
|
15
|
+
.highlight .cs { color: #cd0000; font-weight: bold } /* Comment.Special */
|
16
|
+
.highlight .gd { color: #cd0000 } /* Generic.Deleted */
|
17
|
+
.highlight .ge { color: #cccccc; font-style: italic } /* Generic.Emph */
|
18
|
+
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
19
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
20
|
+
.highlight .gi { color: #00cd00 } /* Generic.Inserted */
|
21
|
+
.highlight .go { color: #808080 } /* Generic.Output */
|
22
|
+
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
23
|
+
.highlight .gs { color: #cccccc; font-weight: bold } /* Generic.Strong */
|
24
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
25
|
+
.highlight .gt { color: #0040D0 } /* Generic.Traceback */
|
26
|
+
.highlight .kc { color: #cdcd00 } /* Keyword.Constant */
|
27
|
+
.highlight .kd { color: #00cd00 } /* Keyword.Declaration */
|
28
|
+
.highlight .kn { color: #cd00cd } /* Keyword.Namespace */
|
29
|
+
.highlight .kp { color: #cdcd00 } /* Keyword.Pseudo */
|
30
|
+
.highlight .kr { color: #cdcd00 } /* Keyword.Reserved */
|
31
|
+
.highlight .kt { color: #00cd00 } /* Keyword.Type */
|
32
|
+
.highlight .ld { color: #cccccc } /* Literal.Date */
|
33
|
+
.highlight .m { color: #cd00cd } /* Literal.Number */
|
34
|
+
.highlight .s { color: #cd0000 } /* Literal.String */
|
35
|
+
.highlight .na { color: #cccccc } /* Name.Attribute */
|
36
|
+
.highlight .nb { color: #cd00cd } /* Name.Builtin */
|
37
|
+
.highlight .nc { color: #00cdcd } /* Name.Class */
|
38
|
+
.highlight .no { color: #cccccc } /* Name.Constant */
|
39
|
+
.highlight .nd { color: #cccccc } /* Name.Decorator */
|
40
|
+
.highlight .ni { color: #cccccc } /* Name.Entity */
|
41
|
+
.highlight .ne { color: #666699; font-weight: bold } /* Name.Exception */
|
42
|
+
.highlight .nf { color: #cccccc } /* Name.Function */
|
43
|
+
.highlight .nl { color: #cccccc } /* Name.Label */
|
44
|
+
.highlight .nn { color: #cccccc } /* Name.Namespace */
|
45
|
+
.highlight .nx { color: #cccccc } /* Name.Other */
|
46
|
+
.highlight .py { color: #cccccc } /* Name.Property */
|
47
|
+
.highlight .nt { color: #cccccc } /* Name.Tag */
|
48
|
+
.highlight .nv { color: #00cdcd } /* Name.Variable */
|
49
|
+
.highlight .ow { color: #cdcd00 } /* Operator.Word */
|
50
|
+
.highlight .w { color: #cccccc } /* Text.Whitespace */
|
51
|
+
.highlight .mf { color: #cd00cd } /* Literal.Number.Float */
|
52
|
+
.highlight .mh { color: #cd00cd } /* Literal.Number.Hex */
|
53
|
+
.highlight .mi { color: #cd00cd } /* Literal.Number.Integer */
|
54
|
+
.highlight .mo { color: #cd00cd } /* Literal.Number.Oct */
|
55
|
+
.highlight .sb { color: #cd0000 } /* Literal.String.Backtick */
|
56
|
+
.highlight .sc { color: #cd0000 } /* Literal.String.Char */
|
57
|
+
.highlight .sd { color: #cd0000 } /* Literal.String.Doc */
|
58
|
+
.highlight .s2 { color: #cd0000 } /* Literal.String.Double */
|
59
|
+
.highlight .se { color: #cd0000 } /* Literal.String.Escape */
|
60
|
+
.highlight .sh { color: #cd0000 } /* Literal.String.Heredoc */
|
61
|
+
.highlight .si { color: #cd0000 } /* Literal.String.Interpol */
|
62
|
+
.highlight .sx { color: #cd0000 } /* Literal.String.Other */
|
63
|
+
.highlight .sr { color: #cd0000 } /* Literal.String.Regex */
|
64
|
+
.highlight .s1 { color: #cd0000 } /* Literal.String.Single */
|
65
|
+
.highlight .ss { color: #cd0000 } /* Literal.String.Symbol */
|
66
|
+
.highlight .bp { color: #cd00cd } /* Name.Builtin.Pseudo */
|
67
|
+
.highlight .vc { color: #00cdcd } /* Name.Variable.Class */
|
68
|
+
.highlight .vg { color: #00cdcd } /* Name.Variable.Global */
|
69
|
+
.highlight .vi { color: #00cdcd } /* Name.Variable.Instance */
|
70
|
+
.highlight .il { color: #cd00cd } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,33 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #008000 } /* Comment */
|
3
|
+
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
4
|
+
.highlight .k { color: #0000ff } /* Keyword */
|
5
|
+
.highlight .cm { color: #008000 } /* Comment.Multiline */
|
6
|
+
.highlight .cp { color: #0000ff } /* Comment.Preproc */
|
7
|
+
.highlight .c1 { color: #008000 } /* Comment.Single */
|
8
|
+
.highlight .cs { color: #008000 } /* Comment.Special */
|
9
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
10
|
+
.highlight .gh { font-weight: bold } /* Generic.Heading */
|
11
|
+
.highlight .gp { font-weight: bold } /* Generic.Prompt */
|
12
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
13
|
+
.highlight .gu { font-weight: bold } /* Generic.Subheading */
|
14
|
+
.highlight .kc { color: #0000ff } /* Keyword.Constant */
|
15
|
+
.highlight .kd { color: #0000ff } /* Keyword.Declaration */
|
16
|
+
.highlight .kn { color: #0000ff } /* Keyword.Namespace */
|
17
|
+
.highlight .kp { color: #0000ff } /* Keyword.Pseudo */
|
18
|
+
.highlight .kr { color: #0000ff } /* Keyword.Reserved */
|
19
|
+
.highlight .kt { color: #2b91af } /* Keyword.Type */
|
20
|
+
.highlight .s { color: #a31515 } /* Literal.String */
|
21
|
+
.highlight .nc { color: #2b91af } /* Name.Class */
|
22
|
+
.highlight .ow { color: #0000ff } /* Operator.Word */
|
23
|
+
.highlight .sb { color: #a31515 } /* Literal.String.Backtick */
|
24
|
+
.highlight .sc { color: #a31515 } /* Literal.String.Char */
|
25
|
+
.highlight .sd { color: #a31515 } /* Literal.String.Doc */
|
26
|
+
.highlight .s2 { color: #a31515 } /* Literal.String.Double */
|
27
|
+
.highlight .se { color: #a31515 } /* Literal.String.Escape */
|
28
|
+
.highlight .sh { color: #a31515 } /* Literal.String.Heredoc */
|
29
|
+
.highlight .si { color: #a31515 } /* Literal.String.Interpol */
|
30
|
+
.highlight .sx { color: #a31515 } /* Literal.String.Other */
|
31
|
+
.highlight .sr { color: #a31515 } /* Literal.String.Regex */
|
32
|
+
.highlight .s1 { color: #a31515 } /* Literal.String.Single */
|
33
|
+
.highlight .ss { color: #a31515 } /* Literal.String.Symbol */
|
@@ -0,0 +1,136 @@
|
|
1
|
+
.highlight code, .highlight pre {
|
2
|
+
color:#fdce93;
|
3
|
+
background-color:#3f3f3f;
|
4
|
+
}
|
5
|
+
|
6
|
+
.highlight .hll {
|
7
|
+
background-color:#222;
|
8
|
+
}
|
9
|
+
|
10
|
+
.highlight .err {
|
11
|
+
color:#e37170;
|
12
|
+
background-color:#3d3535;
|
13
|
+
}
|
14
|
+
|
15
|
+
.highlight .k {
|
16
|
+
color:#f0dfaf;
|
17
|
+
}
|
18
|
+
|
19
|
+
.highlight .p {
|
20
|
+
color:#41706f;
|
21
|
+
}
|
22
|
+
|
23
|
+
.highlight .cs {
|
24
|
+
color:#cd0000;
|
25
|
+
font-weight:700;
|
26
|
+
}
|
27
|
+
|
28
|
+
.highlight .gd {
|
29
|
+
color:#cd0000;
|
30
|
+
}
|
31
|
+
|
32
|
+
.highlight .ge {
|
33
|
+
color:#ccc;
|
34
|
+
font-style:italic;
|
35
|
+
}
|
36
|
+
|
37
|
+
.highlight .gr {
|
38
|
+
color:red;
|
39
|
+
}
|
40
|
+
|
41
|
+
.highlight .go {
|
42
|
+
color:gray;
|
43
|
+
}
|
44
|
+
|
45
|
+
.highlight .gs {
|
46
|
+
color:#ccc;
|
47
|
+
font-weight:700;
|
48
|
+
}
|
49
|
+
|
50
|
+
.highlight .gu {
|
51
|
+
color:purple;
|
52
|
+
font-weight:700;
|
53
|
+
}
|
54
|
+
|
55
|
+
.highlight .gt {
|
56
|
+
color:#0040D0;
|
57
|
+
}
|
58
|
+
|
59
|
+
.highlight .kc {
|
60
|
+
color:#dca3a3;
|
61
|
+
}
|
62
|
+
|
63
|
+
.highlight .kd {
|
64
|
+
color:#ffff86;
|
65
|
+
}
|
66
|
+
|
67
|
+
.highlight .kn {
|
68
|
+
color:#dfaf8f;
|
69
|
+
font-weight:700;
|
70
|
+
}
|
71
|
+
|
72
|
+
.highlight .kp {
|
73
|
+
color:#cdcf99;
|
74
|
+
}
|
75
|
+
|
76
|
+
.highlight .kr {
|
77
|
+
color:#cdcd00;
|
78
|
+
}
|
79
|
+
|
80
|
+
.highlight .ni {
|
81
|
+
color:#c28182;
|
82
|
+
}
|
83
|
+
|
84
|
+
.highlight .ne {
|
85
|
+
color:#c3bf9f;
|
86
|
+
font-weight:700;
|
87
|
+
}
|
88
|
+
|
89
|
+
.highlight .nn {
|
90
|
+
color:#8fbede;
|
91
|
+
}
|
92
|
+
|
93
|
+
.highlight .vi {
|
94
|
+
color:#ffffc7;
|
95
|
+
}
|
96
|
+
|
97
|
+
.highlight .c,.preview-zenburn .highlight .g,.preview-zenburn .highlight .cm,.preview-zenburn .highlight .cp,.preview-zenburn .highlight .c1 {
|
98
|
+
color:#7f9f7f;
|
99
|
+
}
|
100
|
+
|
101
|
+
.highlight .l,.preview-zenburn .highlight .x,.preview-zenburn .highlight .no,.preview-zenburn .highlight .nd,.preview-zenburn .highlight .nl,.preview-zenburn .highlight .nx,.preview-zenburn .highlight .py,.preview-zenburn .highlight .w {
|
102
|
+
color:#ccc;
|
103
|
+
}
|
104
|
+
|
105
|
+
.highlight .n,.preview-zenburn .highlight .nv,.preview-zenburn .highlight .vg {
|
106
|
+
color:#dcdccc;
|
107
|
+
}
|
108
|
+
|
109
|
+
.highlight .o,.preview-zenburn .highlight .ow {
|
110
|
+
color:#f0efd0;
|
111
|
+
}
|
112
|
+
|
113
|
+
.highlight .gh,.preview-zenburn .highlight .gp {
|
114
|
+
color:#dcdccc;
|
115
|
+
font-weight:700;
|
116
|
+
}
|
117
|
+
|
118
|
+
.highlight .gi,.preview-zenburn .highlight .kt {
|
119
|
+
color:#00cd00;
|
120
|
+
}
|
121
|
+
|
122
|
+
.highlight .ld,.preview-zenburn .highlight .s,.preview-zenburn .highlight .sb,.preview-zenburn .highlight .sc,.preview-zenburn .highlight .sd,.preview-zenburn .highlight .s2,.preview-zenburn .highlight .se,.preview-zenburn .highlight .sh,.preview-zenburn .highlight .si,.preview-zenburn .highlight .sx,.preview-zenburn .highlight .sr,.preview-zenburn .highlight .s1,.preview-zenburn .highlight .ss {
|
123
|
+
color:#cc9393;
|
124
|
+
}
|
125
|
+
|
126
|
+
.highlight .m,.preview-zenburn .highlight .mf,.preview-zenburn .highlight .mh,.preview-zenburn .highlight .mi,.preview-zenburn .highlight .mo,.preview-zenburn .highlight .il {
|
127
|
+
color:#8cd0d3;
|
128
|
+
}
|
129
|
+
|
130
|
+
.highlight .na,.preview-zenburn .highlight .nt {
|
131
|
+
color:#9ac39f;
|
132
|
+
}
|
133
|
+
|
134
|
+
.highlight .nb,.preview-zenburn .highlight .nc,.preview-zenburn .highlight .nf,.preview-zenburn .highlight .bp,.preview-zenburn .highlight .vc {
|
135
|
+
color:#efef8f;
|
136
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
.ais-SearchBox-input{
|
2
|
+
@extend .form-control;
|
3
|
+
@extend .rounded;
|
4
|
+
}
|
5
|
+
|
6
|
+
.ais-Hits {
|
7
|
+
|
8
|
+
ol{
|
9
|
+
padding:0;
|
10
|
+
list-style-type: none;
|
11
|
+
list-style: none;
|
12
|
+
}
|
13
|
+
|
14
|
+
li {
|
15
|
+
list-style:none;
|
16
|
+
}
|
17
|
+
|
18
|
+
}
|
19
|
+
|
20
|
+
.ais-Highlight {
|
21
|
+
background-color: $warning;
|
22
|
+
font-style: initial;
|
23
|
+
font-family: inherit;
|
24
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/*! Academia by dieghernan */
|
2
|
+
|
3
|
+
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto+Mono&family=Roboto:wght@400;700&display=swap');
|
4
|
+
|
5
|
+
|
6
|
+
$font-family-base: Roboto, sans-serif;
|
7
|
+
$headings-font-family: Montserrat, sans-serif;
|
8
|
+
$font-family-monospace: Roboto Mono, monospace;
|
9
|
+
$white: white;
|
10
|
+
$primary: #1565c0;
|
11
|
+
$body-bg: white;
|
12
|
+
$navbar-chulapa-bg-color: white;
|
13
|
+
$navbar-chulapa-active-color: #2962ff;
|
14
|
+
$footer-chulapa-icon-color: #1565c0;
|
15
|
+
$footer-chulapa-icon-hover-color: transparent;
|
16
|
+
$h1-font-size: 2.25rem;
|
17
|
+
$h2-font-size: 1.5rem;
|
18
|
+
$h3-font-size: 1.25rem;
|
19
|
+
$h4-font-size: 1rem;
|
20
|
+
$h5-font-size: 1rem;
|
21
|
+
$h6-font-size: 1rem;
|
22
|
+
|
23
|
+
.navbar-chulapa-fab .dropdown-item.active,
|
24
|
+
.navbar-chulapa-fab .dropdown-item:active {
|
25
|
+
background-color:white;
|
26
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/*!
|
2
|
+
* Chulapa - Bootstrap Autothemer
|
3
|
+
* Copyright 2020 Chulapa Jekyll Skin Author
|
4
|
+
* Licensed under MIT
|
5
|
+
*/
|
6
|
+
$primary: #007bff !default;
|
7
|
+
$white: mix(#fff, $primary, 95%) !default;
|
8
|
+
$gray-100: mix(#f8f9fa, $primary, 85%) !default;
|
9
|
+
$gray-200: mix(#e9ecef, $primary, 85%) !default;
|
10
|
+
$gray-300: mix(#dee2e6, $primary, 85%) !default;
|
11
|
+
$gray-400: mix(#ced4da, $primary, 85%) !default;
|
12
|
+
$gray-500: mix(#adb5bd, $primary, 85%) !default;
|
13
|
+
$gray-600: mix(#6c757d, $primary, 85%) !default;
|
14
|
+
$gray-700: mix(#495057, $primary, 85%) !default;
|
15
|
+
$gray-800: mix(#343a40, $primary, 85%) !default;
|
16
|
+
$gray-900: mix(#212529, $primary, 85%) !default;
|
17
|
+
$black: mix(#000, $primary, 95%) !default;
|
18
|
+
$secondary: $gray-600 !default;
|
19
|
+
$success: mix(#28a745, $primary, 75%) !default;
|
20
|
+
$info: mix(#17a2b8, $primary, 75%) !default;
|
21
|
+
$warning: mix(#ffc107, $primary, 75%) !default;
|
22
|
+
$danger: mix(#dc3545, $primary, 75%) !default;
|
23
|
+
$light: mix(white, $primary, 75%) !default;
|
24
|
+
$dark: mix(black, $primary, 75%) !default;
|
25
|
+
$carousel-control-color: $dark !default;
|
26
|
+
$carousel-indicator-active-bg: $dark !default;
|
@@ -0,0 +1,52 @@
|
|
1
|
+
/*! Chulapa by dieghernan */
|
2
|
+
|
3
|
+
@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
|
4
|
+
|
5
|
+
$headings-font-family: chulapa,
|
6
|
+
sans-serif;
|
7
|
+
$font-family-base: 'Ibarra Real Nova', serif;
|
8
|
+
$enable-rounded: false;
|
9
|
+
$btn-font-family: $headings-font-family;
|
10
|
+
|
11
|
+
h1,
|
12
|
+
h2,
|
13
|
+
h3,
|
14
|
+
h4,
|
15
|
+
footer,
|
16
|
+
blockquote,
|
17
|
+
button,
|
18
|
+
legend,
|
19
|
+
label,
|
20
|
+
.alert-heading,
|
21
|
+
.btn,
|
22
|
+
.card-header,
|
23
|
+
.nav-tabs,
|
24
|
+
.nav-pills,
|
25
|
+
.badge,
|
26
|
+
.breadcrumb,
|
27
|
+
.pagination,
|
28
|
+
.navbar {
|
29
|
+
font-family: $headings-font-family !important;
|
30
|
+
-webkit-font-feature-settings: "liga", "dlig";
|
31
|
+
-moz-font-feature-settings: "liga=1, dlig=1";
|
32
|
+
-moz-font-feature-settings: "liga", "dlig";
|
33
|
+
-ms-font-feature-settings: "liga", "dlig";
|
34
|
+
-o-font-feature-settings: "liga", "dlig";
|
35
|
+
font-feature-settings: "liga", "dlig";
|
36
|
+
text-rendering: optimizeLegibility;
|
37
|
+
}
|
38
|
+
|
39
|
+
.alert,
|
40
|
+
.jumbotron {
|
41
|
+
font-family: $headings-font-family !important;
|
42
|
+
}
|
43
|
+
|
44
|
+
$primary: #edc7b7;
|
45
|
+
$secondary: #687864;
|
46
|
+
$success: #88bdbc;
|
47
|
+
$info: #31708e;
|
48
|
+
$warning: #fffe7a;
|
49
|
+
$danger: #f13c20;
|
50
|
+
$dark: darken($secondary, 10%);
|
51
|
+
$navbar-chulapa-toggler-border-color: transparent;
|
52
|
+
@import "skins/auto";
|
@@ -0,0 +1,89 @@
|
|
1
|
+
/*! Tophat `Deeply` Bootstrap 4.3.1 theme */
|
2
|
+
@import url(https://fonts.googleapis.com/css?family=Comfortaa:200,300,400,700);
|
3
|
+
$headings-font-family:Comfortaa;
|
4
|
+
|
5
|
+
$primary:#FF550B;
|
6
|
+
$secondary:#303030;
|
7
|
+
$success:#015668;
|
8
|
+
$danger:#FF304F;
|
9
|
+
$info:#0F81C7;
|
10
|
+
$warning:#0DE2EA;
|
11
|
+
$light:#e8e8e8;
|
12
|
+
$dark:#000000;
|
13
|
+
|
14
|
+
/*! Import Bootstrap 4 variables */
|
15
|
+
@import "bootstrap/functions";
|
16
|
+
@import "bootstrap/variables";
|
17
|
+
|
18
|
+
$enable-shadows:true;
|
19
|
+
$gray-300:#000000;
|
20
|
+
$gray-800:#555555;
|
21
|
+
$body-bg:$black;
|
22
|
+
$body-color:#cccccc;
|
23
|
+
$link-color:#f0f0f0;
|
24
|
+
$link-hover-color:darken($link-color, 20%);
|
25
|
+
$font-size-base:1.1rem;
|
26
|
+
$table-accent-bg: rgba($white, .05);
|
27
|
+
$table-hover-bg:rgba($white, .075);
|
28
|
+
$table-border-color:rgba($white, 0.3);
|
29
|
+
$table-dark-border-color: $table-border-color;
|
30
|
+
$table-dark-color:$white;
|
31
|
+
$input-bg:$gray-300;
|
32
|
+
$input-disabled-bg: #ccc;
|
33
|
+
$dropdown-bg:$gray-800;
|
34
|
+
$dropdown-divider-bg:rgba($black, .15);
|
35
|
+
$dropdown-link-color:$body-color;
|
36
|
+
$dropdown-link-hover-color:$white;
|
37
|
+
$dropdown-link-hover-bg:$body-bg;
|
38
|
+
$nav-tabs-border-color:rgba($white, 0.3);
|
39
|
+
$nav-tabs-link-hover-border-color:$nav-tabs-border-color;
|
40
|
+
$nav-tabs-link-active-bg:transparent;
|
41
|
+
$nav-tabs-link-active-border-color:$nav-tabs-border-color;
|
42
|
+
$navbar-dark-hover-color:$white;
|
43
|
+
$navbar-light-hover-color:$gray-800;
|
44
|
+
$navbar-light-active-color:$gray-800;
|
45
|
+
$pagination-color:$white;
|
46
|
+
$pagination-bg:transparent;
|
47
|
+
$pagination-border-color:rgba($black, 0.6);
|
48
|
+
$pagination-hover-color:$white;
|
49
|
+
$pagination-hover-bg:transparent;
|
50
|
+
$pagination-hover-border-color:rgba($black, 0.6);
|
51
|
+
$pagination-active-bg:transparent;
|
52
|
+
$pagination-active-border-color:rgba($black, 0.6);
|
53
|
+
$pagination-disabled-bg:transparent;
|
54
|
+
$pagination-disabled-border-color:rgba($black, 0.6);
|
55
|
+
$jumbotron-bg:darken($gray-900, 5%);
|
56
|
+
$card-border-color:rgba($black, 0.6);
|
57
|
+
$card-cap-bg:lighten($gray-800, 10%);
|
58
|
+
$card-bg:lighten($body-bg, 5%);
|
59
|
+
$modal-content-bg:lighten($body-bg, 5%);
|
60
|
+
$modal-header-border-color:rgba(0, 0, 0, .2);
|
61
|
+
$progress-bg:darken($gray-900, 5%);
|
62
|
+
$progress-bar-color:$gray-600;
|
63
|
+
$list-group-bg:lighten($body-bg, 5%);
|
64
|
+
$list-group-border-color:rgba($black, 0.6);
|
65
|
+
$list-group-hover-bg:lighten($body-bg, 10%);
|
66
|
+
$list-group-active-color:$white;
|
67
|
+
$list-group-active-bg:$list-group-hover-bg;
|
68
|
+
$list-group-active-border-color:$list-group-border-color;
|
69
|
+
$list-group-disabled-color:$gray-800;
|
70
|
+
$list-group-disabled-bg:$black;
|
71
|
+
$list-group-action-color:$white;
|
72
|
+
$breadcrumb-active-color:$gray-500;
|
73
|
+
|
74
|
+
|
75
|
+
// Add SASS theme customizations here..
|
76
|
+
.navbar-dark.bg-primary {
|
77
|
+
background-color: #111111 !important;
|
78
|
+
}
|
79
|
+
|
80
|
+
$blockquote-chulapa-bg-color: mix($white, $primary, 90%);
|
81
|
+
$pre-chulapa-bg-color: mix($white, $primary, 95%);
|
82
|
+
|
83
|
+
$navbar-chulapa-bg-color: black;
|
84
|
+
$navbar-chulapa-toggler-color: rgba(white, 0.4);
|
85
|
+
$navbar-chulapa-toggler-border-color: rgba(white, 0.1);
|
86
|
+
$navbar-chulapa-toggler-color-bg: transparent;
|
87
|
+
|
88
|
+
$pagination-chulapa-text-color: $primary;
|
89
|
+
$pagination-chulapa-bg-hover-color: $primary;
|