jekyll-theme-centos 0.6.1 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_sass/centos/_footer.scss +1 -1
- data/_sass/centos/_header.scss +5 -5
- data/_sass/centos/_variables.scss +27 -29
- data/_sass/centos/centos.scss +1 -9
- 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: 964ec6545d3c69da750c9ff52d130eb0344ae8302ef6810af517198f4b269623
|
4
|
+
data.tar.gz: cf64337d0980405a4b6aaa491aef856465341753fdf58241ba8474f6abf9d288
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 927adffa89ebfc3e1a6de1cdd4fadc869810cc30b4e34a774192e48d67159be591ca12b6fafe7ebbfa6c26ff4c38cc12557ef325094cb0d23a6d82aaf1eaeb91
|
7
|
+
data.tar.gz: 0c8db8bb6625c844bc97a3da0ef49399ec7d077ee5f7be50d394df9060ec482c33f8193cca1fdd5fb4d1e9b1f6d21a822f7d598c031fb772242e2b21fe0fb5e8
|
data/_sass/centos/_footer.scss
CHANGED
data/_sass/centos/_header.scss
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
color: $white;
|
4
4
|
background-image: url($centos-img-motif);
|
5
|
-
background-color: $
|
5
|
+
background-color: $dark;
|
6
6
|
background-size: cover;
|
7
7
|
background-position: top right;
|
8
8
|
|
9
|
-
text-shadow: 0 0 5px $
|
9
|
+
text-shadow: 0 0 5px $dark;
|
10
10
|
|
11
11
|
&__home {
|
12
12
|
display: flex;
|
@@ -37,7 +37,7 @@
|
|
37
37
|
|
38
38
|
&__title, &__description {
|
39
39
|
@extend .container;
|
40
|
-
text-shadow: 0 0 5px $
|
40
|
+
text-shadow: 0 0 5px $dark;
|
41
41
|
}
|
42
42
|
|
43
43
|
&__description {
|
@@ -58,7 +58,7 @@
|
|
58
58
|
padding: 0.5em;
|
59
59
|
font-size: $h3-font-size;
|
60
60
|
color: $white;
|
61
|
-
background: $
|
61
|
+
background: $dark;
|
62
62
|
opacity: 0.3;
|
63
63
|
&:hover {
|
64
64
|
opacity: 0.65;
|
@@ -74,7 +74,7 @@
|
|
74
74
|
@extend .container;
|
75
75
|
}
|
76
76
|
&__title, &__description {
|
77
|
-
text-shadow: 0 0 5px $
|
77
|
+
text-shadow: 0 0 5px $dark;
|
78
78
|
}
|
79
79
|
&__description {
|
80
80
|
@extend .lead;
|
@@ -1,11 +1,12 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
/* ----------------------------------------------------------------------
|
2
|
+
* Fontawesome
|
3
|
+
* ---------------------------------------------------------------------- */
|
4
|
+
@import "fontawesome/fontawesome";
|
5
|
+
@import "fontawesome/solid";
|
6
|
+
@import "fontawesome/brands";
|
6
7
|
|
7
8
|
/* ----------------------------------------------------------------------
|
8
|
-
* CentOS
|
9
|
+
* CentOS Theme
|
9
10
|
* ---------------------------------------------------------------------- */
|
10
11
|
$centos-color-0: #9ccd2a;
|
11
12
|
$centos-color-1: #efa724;
|
@@ -14,18 +15,16 @@ $centos-color-3: #262577;
|
|
14
15
|
$centos-img-logo: "/assets/img/logo.png";
|
15
16
|
$centos-img-motif: "/assets/img/motif.png";
|
16
17
|
|
17
|
-
/*
|
18
|
-
* Color system - based in the artistic motif palette and the number of
|
18
|
+
/* Color system - based in the artistic motif palette and the number of
|
19
19
|
* occurrence each color has in the image.
|
20
|
-
|
20
|
+
*/
|
21
21
|
$white: #fff;
|
22
22
|
$primary: #6226a9;
|
23
23
|
$secondary: #0f1c4c;
|
24
24
|
$dark: #05112b;
|
25
25
|
|
26
|
-
/*
|
27
|
-
|
28
|
-
* ---------------------------------------------------------------------- */
|
26
|
+
/* Header
|
27
|
+
*/
|
29
28
|
$home-header-padding-top: 202px;
|
30
29
|
$home-header-padding-bottom: 150px;
|
31
30
|
$page-header-padding-top: 152px;
|
@@ -33,41 +32,40 @@ $page-header-padding-bottom: 100px;
|
|
33
32
|
$heading-margin-top: 1rem;
|
34
33
|
$scroll-margin-top: $heading-margin-top * 2.6;
|
35
34
|
|
36
|
-
/*
|
37
|
-
|
38
|
-
* ---------------------------------------------------------------------- */
|
35
|
+
/* Body - settings for `<body>` element.
|
36
|
+
*/
|
39
37
|
$body-bg: #f0f0f0;
|
40
38
|
$body-color: $dark;
|
41
39
|
|
42
|
-
/*
|
43
|
-
|
44
|
-
* ---------------------------------------------------------------------- */
|
40
|
+
/* Paragraphs
|
41
|
+
*/
|
45
42
|
$paragraph-margin-bottom: 1.8rem;
|
46
43
|
|
47
|
-
/*
|
48
|
-
|
49
|
-
* ---------------------------------------------------------------------- */
|
44
|
+
/* Typography - Font, line-height, and color for body text, headings, and more.
|
45
|
+
*/
|
50
46
|
$font-family-path: "/assets/fonts";
|
51
47
|
$font-family-sans-serif: Montserrat;
|
52
48
|
$line-height-base: 1.75;
|
53
49
|
$headings-line-height: $line-height-base - 0.3;
|
54
50
|
$headings-font-weight: 700;
|
55
51
|
|
56
|
-
/*
|
57
|
-
|
58
|
-
* ---------------------------------------------------------------------- */
|
52
|
+
/* Dropdown menu container and contents.
|
53
|
+
*/
|
59
54
|
$dropdown-bg: $dark;
|
60
55
|
$dropdown-link-color: $white;
|
61
56
|
$dropdown-link-hover-color: $white;
|
62
57
|
$dropdown-link-hover-bg: rgba($primary, .2);
|
63
58
|
|
64
|
-
/*
|
65
|
-
|
66
|
-
* ---------------------------------------------------------------------- */
|
59
|
+
/* Breadcrumbs
|
60
|
+
*/
|
67
61
|
$breadcrumb-bg: transparent;
|
68
62
|
$breadcrumb-padding-x: 0;
|
69
63
|
|
64
|
+
/* Tables
|
65
|
+
*/
|
66
|
+
$table-dark-bg: $dark;
|
67
|
+
|
70
68
|
/* ----------------------------------------------------------------------
|
71
|
-
*
|
69
|
+
* Bootstrap
|
72
70
|
* ---------------------------------------------------------------------- */
|
73
|
-
|
71
|
+
@import "bootstrap/bootstrap";
|
data/_sass/centos/centos.scss
CHANGED
@@ -1,18 +1,10 @@
|
|
1
1
|
/*!
|
2
|
-
* jekyll-theme-centos v0.6.
|
2
|
+
* jekyll-theme-centos v0.6.2 (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
|
-
|
7
|
-
@import "fontawesome/fontawesome";
|
8
|
-
@import "fontawesome/solid";
|
9
|
-
@import "fontawesome/brands";
|
10
|
-
|
11
6
|
@import "_variables";
|
12
7
|
@import "_fonts";
|
13
|
-
|
14
|
-
@import "bootstrap/bootstrap";
|
15
|
-
|
16
8
|
@import "_mixins";
|
17
9
|
@import "_datatable";
|
18
10
|
@import "_highlighter";
|