jekyll-theme-centos 0.6.11 → 0.6.16
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 +16 -0
- data/_sass/centos/_main.scss +43 -1
- data/_sass/centos/centos.scss +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d67034869bc079bf7b5c6da4a12fb2430320193a64310f892c7963935d4ea1c9
|
4
|
+
data.tar.gz: 1376370bc19cb4f6d6c3d5a9fec1fef38161d06008a8abe0c90ed7691de536db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ca086edcea740091a69a5547c9f8a9e0069b1db7dbae5a4097394d617727d624cbc58e78fd98a0405fc2b36beddbbfe06456c3075e3c9850e3aec2148489983
|
7
|
+
data.tar.gz: 5a5274221d8acf02b430cff7bdc3426252b14fc45da8f3054cf62a68397c44c5891876c03fd1002ea4a856b3bfbffedd689b765f91da552542a496640ff37311
|
data/_sass/centos/_footer.scss
CHANGED
@@ -45,6 +45,22 @@
|
|
45
45
|
}
|
46
46
|
}
|
47
47
|
|
48
|
+
.sponsor {
|
49
|
+
@extend .col;
|
50
|
+
@extend %-margin;
|
51
|
+
display: flex;
|
52
|
+
justify-content: space-between;
|
53
|
+
flex-direction: row;
|
54
|
+
&__message {
|
55
|
+
}
|
56
|
+
&__logo {
|
57
|
+
img {
|
58
|
+
padding: 15px;
|
59
|
+
background-color: $white;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
48
64
|
.copyright {
|
49
65
|
@extend .col;
|
50
66
|
@extend %-margin;
|
data/_sass/centos/_main.scss
CHANGED
@@ -52,7 +52,14 @@
|
|
52
52
|
&__content {
|
53
53
|
@extend .col-sm-12;
|
54
54
|
@include content;
|
55
|
-
&
|
55
|
+
&__autoindex {
|
56
|
+
// The autoindex is not directly used by website content but by external
|
57
|
+
// sites (e.g., mirror.centos.org, people.centos.org and all the
|
58
|
+
// user-specific pages under it.
|
59
|
+
&__list {
|
60
|
+
padding-bottom: $paragraph-margin-bottom;
|
61
|
+
border-bottom: 1px solid lightgray;
|
62
|
+
}
|
56
63
|
img {
|
57
64
|
width: auto;
|
58
65
|
}
|
@@ -64,6 +71,41 @@
|
|
64
71
|
padding: 0;
|
65
72
|
}
|
66
73
|
}
|
74
|
+
|
75
|
+
&__mailman {
|
76
|
+
&__listinfo {
|
77
|
+
&> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1),
|
78
|
+
&> table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(1) > td {
|
79
|
+
background-color: $white;
|
80
|
+
border: none;
|
81
|
+
padding: 0;
|
82
|
+
}
|
83
|
+
&> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1) {
|
84
|
+
padding: 0;
|
85
|
+
}
|
86
|
+
&> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(1) > strong:nth-child(1) > font:nth-child(1),
|
87
|
+
&> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(2) > strong:nth-child(1) > font:nth-child(1) {
|
88
|
+
font-size: 1rem;
|
89
|
+
}
|
90
|
+
&> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1) > font:nth-child(1) {
|
91
|
+
@extend .h3;
|
92
|
+
}
|
93
|
+
&> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2) > td {
|
94
|
+
border: none;
|
95
|
+
}
|
96
|
+
&> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(3) {
|
97
|
+
display: none;
|
98
|
+
}
|
99
|
+
&> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(4) {
|
100
|
+
@extend .text-white, .bg-dark;
|
101
|
+
}
|
102
|
+
}
|
103
|
+
&__listinfo, &__archtoc, &__archtocnombox, &__article, &__emptyarchive, &__options, &__roster, &__subscribe, &__private, &__admlogin {
|
104
|
+
img {
|
105
|
+
width: auto;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
}
|
67
109
|
}
|
68
110
|
}
|
69
111
|
|
data/_sass/centos/centos.scss
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* jekyll-theme-centos v0.6.
|
2
|
+
* jekyll-theme-centos v0.6.16 (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
|
*/
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-centos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alain Reguera Delgado
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-05-
|
11
|
+
date: 2021-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|