jekyll-theme-centos 0.8.1 → 0.8.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_sass/centos/centos-lists.scss +24 -3
- data/_sass/centos/centos.scss +1 -1
- data/_sass/centos/mixins/_content.scss +16 -0
- 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: 8da0ca6ac8a0e471e3037273e1746747e9e8d0113fb55b3977ca42c5357c7302
|
4
|
+
data.tar.gz: a2d8dc8e83fbc5d18cfcf7e368050d7a0a8f87054a04eb2ee99419c254c6c930
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 603567c0b647310d137c0544b4d2d39e0cb361f6b34e07c13b148dc283a3c8792376a990d16e118ccd74357fa4a895e317251d619f2ca245d4712a2a70169d2c
|
7
|
+
data.tar.gz: fae1f60d65882351c2f861e06df101adf30d4e0a1a285c206f8acd6a7475f075c6115004ee6a8502931c37dddc3b536973b11dabf52b3409f8a8568913d59064
|
@@ -40,6 +40,11 @@
|
|
40
40
|
}
|
41
41
|
}
|
42
42
|
&__welcome {
|
43
|
+
&> form > table > tbody > tr > td > center > table > tbody > tr > td,
|
44
|
+
&> form > table > tbody > tr > td {
|
45
|
+
background-color: white;
|
46
|
+
border: none;
|
47
|
+
}
|
43
48
|
&> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(4) > td {
|
44
49
|
border: none;
|
45
50
|
}
|
@@ -52,6 +57,7 @@
|
|
52
57
|
}
|
53
58
|
&> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1),
|
54
59
|
&> address:nth-child(5) > p:nth-child(7) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td,
|
60
|
+
&> address > table > tbody > tr > td,
|
55
61
|
&> table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(1) > td {
|
56
62
|
background-color: $white;
|
57
63
|
border: none;
|
@@ -59,9 +65,11 @@
|
|
59
65
|
vertical-align: middle;
|
60
66
|
text-align: left;
|
61
67
|
}
|
68
|
+
&> address > table > tbody > tr > td:nth-child(2),
|
62
69
|
&> table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) {
|
63
70
|
text-align: center;
|
64
71
|
}
|
72
|
+
&> address > table > tbody > tr > td:nth-child(3),
|
65
73
|
&> table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(3) {
|
66
74
|
text-align: right;
|
67
75
|
}
|
@@ -104,10 +112,23 @@
|
|
104
112
|
text-align: right;
|
105
113
|
}
|
106
114
|
}
|
107
|
-
&
|
108
|
-
|
109
|
-
|
115
|
+
&__options {
|
116
|
+
&> address > table > tbody > tr > td {
|
117
|
+
background-color: $white;
|
118
|
+
border: none;
|
119
|
+
padding: 0;
|
120
|
+
}
|
121
|
+
&> address > table > tbody > tr > td:nth-child(1) {
|
122
|
+
text-align: left;
|
123
|
+
}
|
124
|
+
&> address > table > tbody > tr > td:nth-child(2) {
|
125
|
+
text-align: center;
|
110
126
|
}
|
127
|
+
&> address > table > tbody > tr > td:nth-child(3) {
|
128
|
+
text-align: right;
|
129
|
+
}
|
130
|
+
}
|
131
|
+
&__welcome, &__listinfo, &__archtoc, &__archtocnombox, &__article, &__emptyarchive, &__options, &__roster, &__subscribe, &__private, &__admlogin {
|
111
132
|
}
|
112
133
|
}
|
113
134
|
}
|
data/_sass/centos/centos.scss
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* jekyll-theme-centos v0.8.
|
2
|
+
* jekyll-theme-centos v0.8.5 (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
|
*/
|
@@ -61,6 +61,22 @@
|
|
61
61
|
}
|
62
62
|
}
|
63
63
|
|
64
|
+
input[type=text], input[type=password], select, textarea {
|
65
|
+
@extend .form-control;
|
66
|
+
}
|
67
|
+
|
68
|
+
input[type=checkbox], input[type=radio] {
|
69
|
+
@extend .form-check-input;
|
70
|
+
}
|
71
|
+
|
72
|
+
input[type=file] {
|
73
|
+
@extend .form-control-file;
|
74
|
+
}
|
75
|
+
|
76
|
+
input[type=submit] {
|
77
|
+
@extend .btn, .btn-primary;
|
78
|
+
}
|
79
|
+
|
64
80
|
.alert {
|
65
81
|
.title {
|
66
82
|
font-size: $h4-font-size;
|
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.8.
|
4
|
+
version: 0.8.5
|
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-
|
11
|
+
date: 2021-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|