jekyll-theme-centos 0.6.2 → 0.6.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 964ec6545d3c69da750c9ff52d130eb0344ae8302ef6810af517198f4b269623
4
- data.tar.gz: cf64337d0980405a4b6aaa491aef856465341753fdf58241ba8474f6abf9d288
3
+ metadata.gz: 201062cefcd4d46f0932ca107a24a553046337b98c2d776db014057b9cce5edc
4
+ data.tar.gz: dfb01c7b8328e5bb0dcc98d24f9587027a80a8b174c18a35e41cc400e449245c
5
5
  SHA512:
6
- metadata.gz: 927adffa89ebfc3e1a6de1cdd4fadc869810cc30b4e34a774192e48d67159be591ca12b6fafe7ebbfa6c26ff4c38cc12557ef325094cb0d23a6d82aaf1eaeb91
7
- data.tar.gz: 0c8db8bb6625c844bc97a3da0ef49399ec7d077ee5f7be50d394df9060ec482c33f8193cca1fdd5fb4d1e9b1f6d21a822f7d598c031fb772242e2b21fe0fb5e8
6
+ metadata.gz: cd9fbc1130b4406a25f91cf0f625c4815a1e0d1fc2b7656ac0045b6ac5bd617faba6ed559b55b65b3f2915a4d61ed25a46a127d586797f33f3f569ea968ccdf8
7
+ data.tar.gz: 49ef4c38970188045299dc26e5a75f7131865d70b0ee30060c0140d998cb688c656d0b5eb6f4954ac245c8e17ebd4e96251561eb71001af7677de6743f5f5334
@@ -1,13 +1,7 @@
1
- /* ----------------------------------------------------------------------
2
- * Fontawesome
3
- * ---------------------------------------------------------------------- */
4
- @import "fontawesome/fontawesome";
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
- /* Color system - based in the artistic motif palette and the number of
19
- * occurrence each color has in the image.
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
- /* Header
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
- /* Body - settings for `<body>` element.
36
- */
27
+ // Body - settings for `<body>` element.
37
28
  $body-bg: #f0f0f0;
38
29
  $body-color: $dark;
39
30
 
40
- /* Paragraphs
41
- */
31
+ // Paragraphs
42
32
  $paragraph-margin-bottom: 1.8rem;
43
33
 
44
- /* Typography - Font, line-height, and color for body text, headings, and more.
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
- /* Dropdown menu container and contents.
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
- /* Breadcrumbs
60
- */
47
+ // Breadcrumbs
61
48
  $breadcrumb-bg: transparent;
62
49
  $breadcrumb-padding-x: 0;
63
50
 
64
- /* Tables
65
- */
51
+ // Tables
66
52
  $table-dark-bg: $dark;
67
-
68
- /* ----------------------------------------------------------------------
69
- * Bootstrap
70
- * ---------------------------------------------------------------------- */
71
- @import "bootstrap/bootstrap";
@@ -1,16 +1,20 @@
1
1
  /*!
2
- * jekyll-theme-centos v0.6.2 (https://gitlab.com/areguera/jekyll-theme-centos/)
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 "_variables";
7
- @import "_fonts";
8
- @import "_mixins";
9
- @import "_datatable";
10
- @import "_highlighter";
11
- @import "_toc";
12
- @import "_breadcrumbs";
13
- @import "_nav";
14
- @import "_header";
15
- @import "_main";
16
- @import "_footer";
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";
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: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alain Reguera Delgado