vertx-howtos-jekyll-theme 0.4.0 → 0.4.1
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 +4 -4
- data/assets/css/style.scss +56 -45
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f911537d529d4710ed4a1ede0b39fa30bf198844657f8683fabf0087a98b891b
|
|
4
|
+
data.tar.gz: 87cb2349c0d142481d44aab70c435fe114dc4713e3258373a3941d63279e2786
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: effe6e0ccdb34cbe11873eb08fe1be70ffac3c263ce1154d85200d5449e8b0f8b0bfb26b065ae61c31fcebf192173e373df3483eca195da014e5445ffbd70faa
|
|
7
|
+
data.tar.gz: 7991d068f207f1d968f375a0b9eb57d5b5e1bb06570159392f65df0a022a4b2c2a4ca6e49f74a0211df78bd964cc0efff350357984ca009f2b84f82be9e7175f
|
data/assets/css/style.scss
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
---
|
|
2
|
-
---
|
|
1
|
+
---
|
|
2
|
+
---
|
|
3
3
|
|
|
4
4
|
// Fonts and definitions
|
|
5
5
|
|
|
6
6
|
@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Mono|IBM+Plex+Sans");
|
|
7
7
|
|
|
8
8
|
$font-size-base: 1.05rem;
|
|
9
|
-
$font-family-sans-serif: "IBM Plex Sans",
|
|
10
|
-
|
|
9
|
+
$font-family-sans-serif: "IBM Plex Sans",
|
|
10
|
+
sans-serif;
|
|
11
|
+
$font-family-monospace: "IBM Plex Mono",
|
|
12
|
+
monospace;
|
|
11
13
|
|
|
12
14
|
$purple: #782b90;
|
|
13
15
|
$link-color: $purple;
|
|
@@ -23,59 +25,64 @@ code {
|
|
|
23
25
|
}
|
|
24
26
|
|
|
25
27
|
.bg-purple {
|
|
26
|
-
|
|
28
|
+
background-color: $purple;
|
|
27
29
|
}
|
|
28
30
|
|
|
29
31
|
@mixin color-margin($color) {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
border-left: solid 0.25em $color;
|
|
33
|
+
padding: 0.5em;
|
|
34
|
+
padding-left: 1em;
|
|
35
|
+
background-color: $gray-100;
|
|
36
|
+
border-radius: 0.5em;
|
|
37
|
+
box-shadow: $box-shadow-sm;
|
|
36
38
|
}
|
|
37
39
|
|
|
38
40
|
pre {
|
|
39
|
-
|
|
41
|
+
@include color-margin($purple);
|
|
40
42
|
}
|
|
41
43
|
|
|
42
44
|
.title {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
45
|
+
color: $purple;
|
|
46
|
+
font-weight: bold;
|
|
47
|
+
font-style: italic;
|
|
48
|
+
line-height: 1.4;
|
|
49
|
+
margin-top: 0.2em;
|
|
50
|
+
margin-bottom: 0.5em;
|
|
49
51
|
}
|
|
50
52
|
|
|
51
53
|
.admonitionblock {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
p {
|
|
71
|
-
margin: 0;
|
|
54
|
+
@include color-margin($purple);
|
|
55
|
+
margin-bottom: 1em;
|
|
56
|
+
|
|
57
|
+
div {
|
|
58
|
+
margin: 0;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
td.icon {
|
|
62
|
+
vertical-align: top;
|
|
63
|
+
padding-right: 0.5em;
|
|
64
|
+
|
|
65
|
+
.title {
|
|
66
|
+
font-style: normal;
|
|
67
|
+
font-weight: bold;
|
|
68
|
+
text-transform: uppercase;
|
|
69
|
+
|
|
70
|
+
&:after {
|
|
71
|
+
content: ' / ';
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
|
|
77
|
-
|
|
76
|
+
td.content {
|
|
77
|
+
p {
|
|
78
|
+
margin: 0;
|
|
79
|
+
}
|
|
78
80
|
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
details {
|
|
84
|
+
margin-bottom: 1em;
|
|
85
|
+
}
|
|
79
86
|
|
|
80
87
|
// Social media icons, see https://sharingbuttons.io/
|
|
81
88
|
|
|
@@ -94,7 +101,7 @@ pre {
|
|
|
94
101
|
border-radius: 5px;
|
|
95
102
|
transition: 25ms ease-out;
|
|
96
103
|
padding: 0.5em 0.75em;
|
|
97
|
-
font-family: Helvetica Neue,Helvetica,Arial,sans-serif
|
|
104
|
+
font-family: Helvetica Neue, Helvetica, Arial, sans-serif
|
|
98
105
|
}
|
|
99
106
|
|
|
100
107
|
.resp-sharing-button__icon svg {
|
|
@@ -203,9 +210,13 @@ pre {
|
|
|
203
210
|
}
|
|
204
211
|
|
|
205
212
|
.resp-sharing-button--hackernews {
|
|
206
|
-
background-color: #FF6600
|
|
213
|
+
background-color: #FF6600
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.resp-sharing-button--hackernews:hover,
|
|
217
|
+
.resp-sharing-button--hackernews:focus {
|
|
218
|
+
background-color: #FB6200
|
|
207
219
|
}
|
|
208
|
-
.resp-sharing-button--hackernews:hover, .resp-sharing-button--hackernews:focus { background-color: #FB6200 }
|
|
209
220
|
|
|
210
221
|
.resp-sharing-button--vk {
|
|
211
222
|
background-color: #507299
|
|
@@ -286,5 +297,5 @@ background-color: #FF6600
|
|
|
286
297
|
}
|
|
287
298
|
|
|
288
299
|
.resp-sharing-button--telegram:hover {
|
|
289
|
-
background-color: #4B97D1;
|
|
290
|
-
|
|
300
|
+
background-color: #4B97D1;
|
|
301
|
+
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vertx-howtos-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julien Ponge
|
|
@@ -10,6 +10,20 @@ bindir: bin
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2019-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: asciidoctor
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - '='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 1.5.8
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 1.5.8
|
|
13
27
|
- !ruby/object:Gem::Dependency
|
|
14
28
|
name: jekyll
|
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|