jekyll-theme-centos 0.1.25 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/{page/breadcrumbs.html → breadcrumbs.html} +0 -0
- data/_includes/{page/download-body-doc.html → download/body-doc.html} +0 -0
- data/_includes/{page/download-body-eol.html → download/body-eol.html} +0 -0
- data/_includes/{page/download-body.html → download/body.html} +0 -0
- data/_includes/download/cards.html +16 -0
- data/_includes/{page/download-footer.html → download/footer.html} +0 -0
- data/_includes/download/header-doc.html +8 -0
- data/_includes/download/header-eol.html +8 -0
- data/_includes/download/header.html +10 -0
- data/_includes/download/linux.html +22 -0
- data/_includes/download/linux/7-doc.html +5 -0
- data/_includes/download/linux/7-eol.html +5 -0
- data/_includes/download/linux/7.html +5 -0
- data/_includes/download/linux/8-doc.html +5 -0
- data/_includes/download/linux/8-eol.html +5 -0
- data/_includes/download/linux/8.html +5 -0
- data/_includes/download/stream.html +16 -0
- data/_includes/download/stream/8-doc.html +5 -0
- data/_includes/download/stream/8-eol.html +5 -0
- data/_includes/download/stream/8.html +5 -0
- data/_includes/header.html +9 -11
- data/_includes/header/blog.html +17 -20
- data/_includes/header/home.html +13 -17
- data/_includes/header/page.html +4 -10
- data/_includes/header/post.html +19 -20
- data/_includes/home/around.html +2 -4
- data/_includes/home/news-and-sponsors.html +8 -0
- data/_includes/home/news.html +10 -13
- data/_includes/home/sponsors.html +6 -6
- data/_includes/{page/search.html → search.html} +0 -0
- data/_includes/{page/toc.html → toc.html} +4 -5
- data/_includes/top.html +3 -0
- data/_layouts/aside.html +11 -10
- data/_layouts/blog.html +34 -40
- data/_layouts/default.html +1 -0
- data/_layouts/download-mirror.html +5 -7
- data/_layouts/home.html +5 -9
- data/_layouts/page.html +10 -7
- data/_layouts/post.html +34 -19
- data/_layouts/search.html +8 -7
- data/_layouts/sponsors.html +16 -10
- data/_sass/centos/_breadcrumbs.scss +4 -0
- data/_sass/centos/_footer.scss +15 -3
- data/_sass/centos/_header.scss +82 -38
- data/_sass/centos/_main.scss +196 -0
- data/_sass/centos/_mixins.scss +3 -6
- data/_sass/centos/_nav.scss +2 -13
- data/_sass/centos/{mixins/_page-toc.scss → _toc.scss} +8 -4
- data/_sass/centos/_variables.scss +15 -45
- data/_sass/centos/centos.scss +3 -2
- data/_sass/centos/mixins/_aside-nav.scss +26 -0
- data/_sass/centos/mixins/_content.scss +82 -0
- data/_sass/centos/{_rssfeeds.scss → mixins/_link-list.scss} +1 -1
- data/assets/img/post.png +0 -0
- metadata +33 -33
- data/_includes/page/download-cards.html +0 -13
- data/_includes/page/download-header-doc.html +0 -8
- data/_includes/page/download-header-eol.html +0 -8
- data/_includes/page/download-header.html +0 -10
- data/_includes/page/download-linux.html +0 -20
- data/_includes/page/download-linux/7-doc.html +0 -5
- data/_includes/page/download-linux/7-eol.html +0 -5
- data/_includes/page/download-linux/7.html +0 -5
- data/_includes/page/download-linux/8-doc.html +0 -5
- data/_includes/page/download-linux/8-eol.html +0 -5
- data/_includes/page/download-linux/8.html +0 -5
- data/_includes/page/download-stream.html +0 -16
- data/_includes/page/download-stream/8-doc.html +0 -5
- data/_includes/page/download-stream/8-eol.html +0 -5
- data/_includes/page/download-stream/8.html +0 -5
- data/_layouts/download.html +0 -25
- data/_sass/centos/_page.scss +0 -222
- data/_sass/centos/mixins/_before-angle-right.scss +0 -9
- data/_sass/centos/mixins/_link-dark.scss +0 -10
- data/_sass/centos/mixins/_page-card.scss +0 -14
- data/_sass/centos/mixins/_page-heading.scss +0 -28
- data/_sass/centos/mixins/_page-lists.scss +0 -15
@@ -1,28 +0,0 @@
|
|
1
|
-
@mixin page-heading {
|
2
|
-
h2 {
|
3
|
-
margin-top: $heading-margin-top;
|
4
|
-
font-weight: $font-weight-bold;
|
5
|
-
border-bottom: 3px solid $nord-color-0;
|
6
|
-
color: $nord-color-0;
|
7
|
-
scroll-margin-top: $scroll-margin-top;
|
8
|
-
&:first-child {
|
9
|
-
margin-top: 0;
|
10
|
-
}
|
11
|
-
}
|
12
|
-
h3 {
|
13
|
-
margin-top: $heading-margin-top - 0.5;
|
14
|
-
scroll-margin-top: $scroll-margin-top + 0.5;
|
15
|
-
}
|
16
|
-
h4 {
|
17
|
-
margin-top: $heading-margin-top - 0.9;
|
18
|
-
scroll-margin-top: $scroll-margin-top + 0.9;
|
19
|
-
}
|
20
|
-
h5 {
|
21
|
-
margin-top: $heading-margin-top - 1.2;
|
22
|
-
scroll-margin-top: $scroll-margin-top + 1.2;
|
23
|
-
}
|
24
|
-
h6 {
|
25
|
-
margin-top: $heading-margin-top - 1.8;
|
26
|
-
scroll-margin-top: $scroll-margin-top + 1.8;
|
27
|
-
}
|
28
|
-
}
|