jekyll-theme-centos 2.45.0 → 2.46.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 +4 -4
- data/_sass/base/_customization.scss +3 -6
- data/_sass/base/_maps.scss +9 -0
- data/_sass/base/_variables.scss +16 -7
- data/assets/css/base/stylesheet.min.scss +14 -0
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 21ee2decc9dd05b3bb1feddf5eff8d717b1c2f65e454f3a94ce044ca7f373b67
|
|
4
|
+
data.tar.gz: b9feb0e57c0ae33070252db4b002567a296908c93bd548f591b6d4f374c88b7a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc8a27944551c1fb4a7535f21b62e97f152df54b226a8f427cd325584692d9e2cab3fe08ca846f17ae53ce08c4dffff4b4fe09448b9e26d258ede14ffe585bac
|
|
7
|
+
data.tar.gz: 531174767fbbdd15fa9ee2a0ad9dd1729b953610175e1f21c6fd2e418d129841bb1a68659fe031cdfca1750776a890e995d454f9c24015b898d1f50ffc57e94a
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
// --------------------------------------------------------------------------------
|
|
2
2
|
// Adjustments
|
|
3
3
|
// --------------------------------------------------------------------------------
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
footer {
|
|
7
|
-
position: relative;
|
|
8
|
-
top: 59px;
|
|
4
|
+
body {
|
|
5
|
+
padding-top: 59px;
|
|
9
6
|
}
|
|
10
7
|
|
|
11
8
|
// --------------------------------------------------------------------------------
|
|
@@ -161,7 +158,7 @@ main {
|
|
|
161
158
|
// Tables
|
|
162
159
|
// --------------------------------------------------------------------------------
|
|
163
160
|
div.dataTables_wrapper {
|
|
164
|
-
margin-bottom:
|
|
161
|
+
margin-bottom: $spacer;
|
|
165
162
|
div.dataTables_info {
|
|
166
163
|
padding-top: 0;
|
|
167
164
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// --------------------------------------------------------------------------------
|
|
2
|
+
// Spacing customization
|
|
3
|
+
// --------------------------------------------------------------------------------
|
|
4
|
+
$spacers: map-merge(
|
|
5
|
+
$spacers,
|
|
6
|
+
(
|
|
7
|
+
"6": $spacer * 5,
|
|
8
|
+
)
|
|
9
|
+
);
|
data/_sass/base/_variables.scss
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
// Bootstrap customization
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
//
|
|
5
|
+
// --------------------------------------------------------------------------------
|
|
6
|
+
// Color
|
|
7
|
+
// --------------------------------------------------------------------------------
|
|
6
8
|
$centos-purple: #a14f8c;
|
|
7
9
|
$centos-orange: #efa724;
|
|
8
10
|
$centos-blue: #262577;
|
|
9
11
|
$centos-green: #9ccd2a;
|
|
10
|
-
// scss-docs-end color-variables
|
|
11
12
|
|
|
12
|
-
// scss-docs-start theme-color-variables
|
|
13
13
|
$primary: $centos-purple;
|
|
14
14
|
$secondary: $centos-orange;
|
|
15
15
|
$dark: #200735;
|
|
@@ -17,24 +17,30 @@ $success: #198754;
|
|
|
17
17
|
$info: #0dcaf0;
|
|
18
18
|
$warning: #ffc107;
|
|
19
19
|
$danger: #dc3545;
|
|
20
|
-
// scss-docs-end theme-color-variables
|
|
21
20
|
|
|
22
|
-
// scss-docs-start theme-text-variables
|
|
23
21
|
$primary-text-emphasis: shade-color($primary, 60%);
|
|
24
22
|
$secondary-text-emphasis: shade-color($secondary, 60%);
|
|
25
23
|
$success-text-emphasis: shade-color($success, 60%);
|
|
26
24
|
$info-text-emphasis: shade-color($info, 60%);
|
|
27
25
|
$warning-text-emphasis: shade-color($warning, 60%);
|
|
28
26
|
$danger-text-emphasis: shade-color($danger, 60%);
|
|
29
|
-
|
|
27
|
+
$dropdown-dark-bg: $dark;
|
|
30
28
|
|
|
29
|
+
// --------------------------------------------------------------------------------
|
|
30
|
+
// Typography
|
|
31
|
+
// --------------------------------------------------------------------------------
|
|
31
32
|
$font-family-sans-serif: "Montserrat", sans-serif;
|
|
32
33
|
$font-family-monospace: "Source Code Pro", monospace;
|
|
33
34
|
$headings-font-weight: 700;
|
|
34
35
|
|
|
35
|
-
|
|
36
|
+
// --------------------------------------------------------------------------------
|
|
37
|
+
// Breadcrumb
|
|
38
|
+
// --------------------------------------------------------------------------------
|
|
36
39
|
$breadcrumb-divider: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><path d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z'/></svg>");
|
|
37
40
|
|
|
41
|
+
// --------------------------------------------------------------------------------
|
|
42
|
+
// Alerts
|
|
43
|
+
// --------------------------------------------------------------------------------
|
|
38
44
|
$alert-primary-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" viewBox="0 0 42.333 42.333"><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:rgba(#{to-rgb($primary-text-emphasis)},1);stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#{to-rgb($primary-text-emphasis)}"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000"/></g></svg>');
|
|
39
45
|
$alert-secondary-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" viewBox="0 0 42.333 42.333"><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:rgba(#{to-rgb($secondary-text-emphasis)},1);stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#{to-rgb($secondary-text-emphasis)}"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000"/></g></svg>');
|
|
40
46
|
$alert-warning-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($warning-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"/></svg>');
|
|
@@ -42,4 +48,7 @@ $alert-info-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg
|
|
|
42
48
|
$alert-danger-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($danger-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/></svg>');
|
|
43
49
|
$alert-success-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($success-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>');
|
|
44
50
|
|
|
51
|
+
// --------------------------------------------------------------------------------
|
|
52
|
+
// Negative margins
|
|
53
|
+
// --------------------------------------------------------------------------------
|
|
45
54
|
$enable-negative-margins: true;
|
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
---
|
|
2
2
|
---
|
|
3
3
|
|
|
4
|
+
// 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
|
|
4
5
|
@import "bootstrap/functions";
|
|
6
|
+
|
|
7
|
+
// 2. Include any default variable overrides here
|
|
5
8
|
@import "base/variables";
|
|
9
|
+
|
|
10
|
+
// 3. Include remainder of required Bootstrap stylesheets (including any separate color mode stylesheets)
|
|
11
|
+
@import "bootstrap/variables";
|
|
12
|
+
@import "bootstrap/variables-dark";
|
|
13
|
+
|
|
14
|
+
// 4. Include any default map overrides here
|
|
15
|
+
@import "base/maps";
|
|
16
|
+
|
|
17
|
+
// 5. Include remainder of required parts
|
|
6
18
|
@import "bootstrap/bootstrap";
|
|
19
|
+
|
|
20
|
+
// 6. Add additional custom code here
|
|
7
21
|
@import "base/customization";
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
|
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-centos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.46.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ReleaseBot
|
|
@@ -103,6 +103,7 @@ files:
|
|
|
103
103
|
- _layouts/search.html
|
|
104
104
|
- _layouts/sponsors.html
|
|
105
105
|
- _sass/base/_customization.scss
|
|
106
|
+
- _sass/base/_maps.scss
|
|
106
107
|
- _sass/base/_variables.scss
|
|
107
108
|
- _sass/bootstrap/_accordion.scss
|
|
108
109
|
- _sass/bootstrap/_alert.scss
|