jekyll-theme-centos 0.6.2 → 0.6.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_sass/centos/_variables.scss +13 -32
- data/_sass/centos/centos.scss +16 -12
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 201062cefcd4d46f0932ca107a24a553046337b98c2d776db014057b9cce5edc
|
4
|
+
data.tar.gz: dfb01c7b8328e5bb0dcc98d24f9587027a80a8b174c18a35e41cc400e449245c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd9fbc1130b4406a25f91cf0f625c4815a1e0d1fc2b7656ac0045b6ac5bd617faba6ed559b55b65b3f2915a4d61ed25a46a127d586797f33f3f569ea968ccdf8
|
7
|
+
data.tar.gz: 49ef4c38970188045299dc26e5a75f7131865d70b0ee30060c0140d998cb688c656d0b5eb6f4954ac245c8e17ebd4e96251561eb71001af7677de6743f5f5334
|
@@ -1,13 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
@import "fontawesome/solid";
|
6
|
-
@import "fontawesome/brands";
|
7
|
-
|
8
|
-
/* ----------------------------------------------------------------------
|
9
|
-
* CentOS Theme
|
10
|
-
* ---------------------------------------------------------------------- */
|
1
|
+
// Variables
|
2
|
+
//
|
3
|
+
// Variables should follow the `$component-state-property-size` formula for
|
4
|
+
// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
|
11
5
|
$centos-color-0: #9ccd2a;
|
12
6
|
$centos-color-1: #efa724;
|
13
7
|
$centos-color-2: #a14f8c;
|
@@ -15,16 +9,14 @@ $centos-color-3: #262577;
|
|
15
9
|
$centos-img-logo: "/assets/img/logo.png";
|
16
10
|
$centos-img-motif: "/assets/img/motif.png";
|
17
11
|
|
18
|
-
|
19
|
-
|
20
|
-
*/
|
12
|
+
// Color system - based in the artistic motif palette and the number of
|
13
|
+
// occurrence each color has in the image.
|
21
14
|
$white: #fff;
|
22
15
|
$primary: #6226a9;
|
23
16
|
$secondary: #0f1c4c;
|
24
17
|
$dark: #05112b;
|
25
18
|
|
26
|
-
|
27
|
-
*/
|
19
|
+
// Header
|
28
20
|
$home-header-padding-top: 202px;
|
29
21
|
$home-header-padding-bottom: 150px;
|
30
22
|
$page-header-padding-top: 152px;
|
@@ -32,40 +24,29 @@ $page-header-padding-bottom: 100px;
|
|
32
24
|
$heading-margin-top: 1rem;
|
33
25
|
$scroll-margin-top: $heading-margin-top * 2.6;
|
34
26
|
|
35
|
-
|
36
|
-
*/
|
27
|
+
// Body - settings for `<body>` element.
|
37
28
|
$body-bg: #f0f0f0;
|
38
29
|
$body-color: $dark;
|
39
30
|
|
40
|
-
|
41
|
-
*/
|
31
|
+
// Paragraphs
|
42
32
|
$paragraph-margin-bottom: 1.8rem;
|
43
33
|
|
44
|
-
|
45
|
-
*/
|
34
|
+
// Typography - Font, line-height, and color for body text, headings, and more.
|
46
35
|
$font-family-path: "/assets/fonts";
|
47
36
|
$font-family-sans-serif: Montserrat;
|
48
37
|
$line-height-base: 1.75;
|
49
38
|
$headings-line-height: $line-height-base - 0.3;
|
50
39
|
$headings-font-weight: 700;
|
51
40
|
|
52
|
-
|
53
|
-
*/
|
41
|
+
// Dropdown menu container and contents.
|
54
42
|
$dropdown-bg: $dark;
|
55
43
|
$dropdown-link-color: $white;
|
56
44
|
$dropdown-link-hover-color: $white;
|
57
45
|
$dropdown-link-hover-bg: rgba($primary, .2);
|
58
46
|
|
59
|
-
|
60
|
-
*/
|
47
|
+
// Breadcrumbs
|
61
48
|
$breadcrumb-bg: transparent;
|
62
49
|
$breadcrumb-padding-x: 0;
|
63
50
|
|
64
|
-
|
65
|
-
*/
|
51
|
+
// Tables
|
66
52
|
$table-dark-bg: $dark;
|
67
|
-
|
68
|
-
/* ----------------------------------------------------------------------
|
69
|
-
* Bootstrap
|
70
|
-
* ---------------------------------------------------------------------- */
|
71
|
-
@import "bootstrap/bootstrap";
|
data/_sass/centos/centos.scss
CHANGED
@@ -1,16 +1,20 @@
|
|
1
1
|
/*!
|
2
|
-
* jekyll-theme-centos v0.6.
|
2
|
+
* jekyll-theme-centos v0.6.3 (https://gitlab.com/areguera/jekyll-theme-centos/)
|
3
3
|
* Copyright 2020-2021 Alain Reguera Delgado
|
4
4
|
* Licensed under MIT (https://gitlab.com/areguera/jekyll-theme-centos/-/blob/master/LICENSE)
|
5
5
|
*/
|
6
|
-
@import "
|
7
|
-
@import "
|
8
|
-
@import "
|
9
|
-
@import "
|
10
|
-
@import "
|
11
|
-
@import "
|
12
|
-
@import "
|
13
|
-
@import "
|
14
|
-
@import "
|
15
|
-
@import "
|
16
|
-
@import "
|
6
|
+
@import "fontawesome/fontawesome";
|
7
|
+
@import "fontawesome/solid";
|
8
|
+
@import "fontawesome/brands";
|
9
|
+
@import "centos/variables";
|
10
|
+
@import "bootstrap/bootstrap";
|
11
|
+
@import "centos/fonts";
|
12
|
+
@import "centos/mixins";
|
13
|
+
@import "centos/datatable";
|
14
|
+
@import "centos/highlighter";
|
15
|
+
@import "centos/toc";
|
16
|
+
@import "centos/breadcrumbs";
|
17
|
+
@import "centos/nav";
|
18
|
+
@import "centos/header";
|
19
|
+
@import "centos/main";
|
20
|
+
@import "centos/footer";
|