vertx-howtos-jekyll-theme 0.4.0 → 0.4.5
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/_includes/header.html +1 -0
- data/_layouts/frontpage.html +1 -1
- data/assets/css/style.scss +55 -46
- metadata +21 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba3cce05f69639852d24961527b2698274853a5e72fc32a45bca58a00fc7fe12
|
4
|
+
data.tar.gz: cc681c48d57cff0d160dfc3e0dc67b077aa10c88ea617de737b6547230967f71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd2df7297235c32a84dfed32f3267b2e55fcbd29744893484c90de0d680bc42876a09780d37810eca012d885fcba64a4af1a1ba7845b04cfe88dcc83a40fa086
|
7
|
+
data.tar.gz: 80411b709deb40097067722d923c6bbb31cb83761b871f77d8f2e908002cf04b411fe8cf22a44cb799d0e238b4b4a33b1a5f15f7adcc75f8394792f4a7595765
|
data/_includes/header.html
CHANGED
@@ -8,6 +8,7 @@
|
|
8
8
|
<link rel="stylesheet" href="assets/css/style.css">
|
9
9
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
|
10
10
|
crossorigin="anonymous">
|
11
|
+
<link rel="icon" type="image/svg+xml" href="assets/images/vertx-square.svg">
|
11
12
|
</head>
|
12
13
|
|
13
14
|
<body>
|
data/_layouts/frontpage.html
CHANGED
data/assets/css/style.scss
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
---
|
2
|
-
---
|
1
|
+
---
|
2
|
+
---
|
3
3
|
|
4
4
|
// Fonts and definitions
|
5
5
|
|
6
|
-
@import url(
|
6
|
+
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Mono&display=swap');
|
7
7
|
|
8
8
|
$font-size-base: 1.05rem;
|
9
|
-
$font-family-sans-serif: "
|
10
|
-
$font-family-monospace: "
|
9
|
+
$font-family-sans-serif: "Roboto", sans-serif;
|
10
|
+
$font-family-monospace: "Roboto Mono", monospace;
|
11
11
|
|
12
12
|
$purple: #782b90;
|
13
13
|
$link-color: $purple;
|
@@ -23,59 +23,64 @@ code {
|
|
23
23
|
}
|
24
24
|
|
25
25
|
.bg-purple {
|
26
|
-
|
26
|
+
background-color: $purple;
|
27
27
|
}
|
28
28
|
|
29
29
|
@mixin color-margin($color) {
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
30
|
+
border-left: solid 0.25em $color;
|
31
|
+
padding: 0.5em;
|
32
|
+
padding-left: 1em;
|
33
|
+
background-color: $gray-100;
|
34
|
+
border-radius: 0.5em;
|
35
|
+
box-shadow: $box-shadow-sm;
|
36
36
|
}
|
37
37
|
|
38
38
|
pre {
|
39
|
-
|
39
|
+
@include color-margin($purple);
|
40
40
|
}
|
41
41
|
|
42
42
|
.title {
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
43
|
+
color: $purple;
|
44
|
+
font-weight: bold;
|
45
|
+
font-style: italic;
|
46
|
+
line-height: 1.4;
|
47
|
+
margin-top: 0.2em;
|
48
|
+
margin-bottom: 0.5em;
|
49
49
|
}
|
50
50
|
|
51
51
|
.admonitionblock {
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
p {
|
71
|
-
margin: 0;
|
52
|
+
@include color-margin($purple);
|
53
|
+
margin-bottom: 1em;
|
54
|
+
|
55
|
+
div {
|
56
|
+
margin: 0;
|
57
|
+
}
|
58
|
+
|
59
|
+
td.icon {
|
60
|
+
vertical-align: top;
|
61
|
+
padding-right: 0.5em;
|
62
|
+
|
63
|
+
.title {
|
64
|
+
font-style: normal;
|
65
|
+
font-weight: bold;
|
66
|
+
text-transform: uppercase;
|
67
|
+
|
68
|
+
&:after {
|
69
|
+
content: ' / ';
|
72
70
|
}
|
73
71
|
}
|
74
72
|
}
|
75
73
|
|
76
|
-
|
77
|
-
|
74
|
+
td.content {
|
75
|
+
p {
|
76
|
+
margin: 0;
|
77
|
+
}
|
78
78
|
}
|
79
|
+
}
|
80
|
+
|
81
|
+
details {
|
82
|
+
margin-bottom: 1em;
|
83
|
+
}
|
79
84
|
|
80
85
|
// Social media icons, see https://sharingbuttons.io/
|
81
86
|
|
@@ -94,7 +99,7 @@ pre {
|
|
94
99
|
border-radius: 5px;
|
95
100
|
transition: 25ms ease-out;
|
96
101
|
padding: 0.5em 0.75em;
|
97
|
-
font-family: Helvetica Neue,Helvetica,Arial,sans-serif
|
102
|
+
font-family: Helvetica Neue, Helvetica, Arial, sans-serif
|
98
103
|
}
|
99
104
|
|
100
105
|
.resp-sharing-button__icon svg {
|
@@ -203,9 +208,13 @@ pre {
|
|
203
208
|
}
|
204
209
|
|
205
210
|
.resp-sharing-button--hackernews {
|
206
|
-
background-color: #FF6600
|
211
|
+
background-color: #FF6600
|
212
|
+
}
|
213
|
+
|
214
|
+
.resp-sharing-button--hackernews:hover,
|
215
|
+
.resp-sharing-button--hackernews:focus {
|
216
|
+
background-color: #FB6200
|
207
217
|
}
|
208
|
-
.resp-sharing-button--hackernews:hover, .resp-sharing-button--hackernews:focus { background-color: #FB6200 }
|
209
218
|
|
210
219
|
.resp-sharing-button--vk {
|
211
220
|
background-color: #507299
|
@@ -286,5 +295,5 @@ background-color: #FF6600
|
|
286
295
|
}
|
287
296
|
|
288
297
|
.resp-sharing-button--telegram:hover {
|
289
|
-
background-color: #4B97D1;
|
290
|
-
|
298
|
+
background-color: #4B97D1;
|
299
|
+
}
|
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julien Ponge
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-09 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: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: jekyll
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,7 +66,7 @@ dependencies:
|
|
52
66
|
- - "~>"
|
53
67
|
- !ruby/object:Gem::Version
|
54
68
|
version: '12.0'
|
55
|
-
description:
|
69
|
+
description:
|
56
70
|
email:
|
57
71
|
- julien.ponge@gmail.com
|
58
72
|
executables: []
|
@@ -229,7 +243,7 @@ homepage: https://github.com/vertx-howtos/vertx-howtos-jekyll-theme
|
|
229
243
|
licenses:
|
230
244
|
- MIT
|
231
245
|
metadata: {}
|
232
|
-
post_install_message:
|
246
|
+
post_install_message:
|
233
247
|
rdoc_options: []
|
234
248
|
require_paths:
|
235
249
|
- lib
|
@@ -244,9 +258,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
244
258
|
- !ruby/object:Gem::Version
|
245
259
|
version: '0'
|
246
260
|
requirements: []
|
247
|
-
|
248
|
-
|
249
|
-
signing_key:
|
261
|
+
rubygems_version: 3.1.2
|
262
|
+
signing_key:
|
250
263
|
specification_version: 4
|
251
264
|
summary: Theme for the Vert.x howtos
|
252
265
|
test_files: []
|