vertx-howtos-jekyll-theme 0.1.0
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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_layouts/page.html +61 -0
- data/_sass/bootstrap/js/dist/alert.js +199 -0
- data/_sass/bootstrap/js/dist/alert.js.map +1 -0
- data/_sass/bootstrap/js/dist/button.js +187 -0
- data/_sass/bootstrap/js/dist/button.js.map +1 -0
- data/_sass/bootstrap/js/dist/carousel.js +666 -0
- data/_sass/bootstrap/js/dist/carousel.js.map +1 -0
- data/_sass/bootstrap/js/dist/collapse.js +428 -0
- data/_sass/bootstrap/js/dist/collapse.js.map +1 -0
- data/_sass/bootstrap/js/dist/dropdown.js +591 -0
- data/_sass/bootstrap/js/dist/dropdown.js.map +1 -0
- data/_sass/bootstrap/js/dist/index.js +23 -0
- data/_sass/bootstrap/js/dist/index.js.map +1 -0
- data/_sass/bootstrap/js/dist/modal.js +644 -0
- data/_sass/bootstrap/js/dist/modal.js.map +1 -0
- data/_sass/bootstrap/js/dist/popover.js +261 -0
- data/_sass/bootstrap/js/dist/popover.js.map +1 -0
- data/_sass/bootstrap/js/dist/scrollspy.js +375 -0
- data/_sass/bootstrap/js/dist/scrollspy.js.map +1 -0
- data/_sass/bootstrap/js/dist/tab.js +266 -0
- data/_sass/bootstrap/js/dist/tab.js.map +1 -0
- data/_sass/bootstrap/js/dist/toast.js +278 -0
- data/_sass/bootstrap/js/dist/toast.js.map +1 -0
- data/_sass/bootstrap/js/dist/tooltip.js +745 -0
- data/_sass/bootstrap/js/dist/tooltip.js.map +1 -0
- data/_sass/bootstrap/js/dist/util.js +168 -0
- data/_sass/bootstrap/js/dist/util.js.map +1 -0
- data/_sass/bootstrap/js/src/alert.js +179 -0
- data/_sass/bootstrap/js/src/button.js +171 -0
- data/_sass/bootstrap/js/src/carousel.js +604 -0
- data/_sass/bootstrap/js/src/collapse.js +402 -0
- data/_sass/bootstrap/js/src/dropdown.js +538 -0
- data/_sass/bootstrap/js/src/index.js +52 -0
- data/_sass/bootstrap/js/src/modal.js +587 -0
- data/_sass/bootstrap/js/src/popover.js +184 -0
- data/_sass/bootstrap/js/src/scrollspy.js +326 -0
- data/_sass/bootstrap/js/src/tab.js +257 -0
- data/_sass/bootstrap/js/src/toast.js +223 -0
- data/_sass/bootstrap/js/src/tooltip.js +735 -0
- data/_sass/bootstrap/js/src/util.js +173 -0
- data/_sass/bootstrap/js/tests/README.md +69 -0
- data/_sass/bootstrap/js/tests/browsers.js +82 -0
- data/_sass/bootstrap/js/tests/index.html +145 -0
- data/_sass/bootstrap/js/tests/integration/bundle.js +8 -0
- data/_sass/bootstrap/js/tests/integration/index.html +66 -0
- data/_sass/bootstrap/js/tests/integration/rollup.bundle.js +20 -0
- data/_sass/bootstrap/js/tests/karma.conf.js +145 -0
- data/_sass/bootstrap/js/tests/unit/.eslintrc.json +40 -0
- data/_sass/bootstrap/js/tests/unit/alert.js +123 -0
- data/_sass/bootstrap/js/tests/unit/button.js +222 -0
- data/_sass/bootstrap/js/tests/unit/carousel.js +1273 -0
- data/_sass/bootstrap/js/tests/unit/collapse.js +892 -0
- data/_sass/bootstrap/js/tests/unit/dropdown.js +1364 -0
- data/_sass/bootstrap/js/tests/unit/modal.js +796 -0
- data/_sass/bootstrap/js/tests/unit/popover.js +471 -0
- data/_sass/bootstrap/js/tests/unit/scrollspy.js +728 -0
- data/_sass/bootstrap/js/tests/unit/tab.js +462 -0
- data/_sass/bootstrap/js/tests/unit/toast.js +239 -0
- data/_sass/bootstrap/js/tests/unit/tooltip.js +1072 -0
- data/_sass/bootstrap/js/tests/unit/util.js +164 -0
- data/_sass/bootstrap/js/tests/visual/alert.html +58 -0
- data/_sass/bootstrap/js/tests/visual/button.html +51 -0
- data/_sass/bootstrap/js/tests/visual/carousel.html +66 -0
- data/_sass/bootstrap/js/tests/visual/collapse.html +78 -0
- data/_sass/bootstrap/js/tests/visual/dropdown.html +212 -0
- data/_sass/bootstrap/js/tests/visual/modal.html +268 -0
- data/_sass/bootstrap/js/tests/visual/popover.html +46 -0
- data/_sass/bootstrap/js/tests/visual/scrollspy.html +95 -0
- data/_sass/bootstrap/js/tests/visual/tab.html +234 -0
- data/_sass/bootstrap/js/tests/visual/toast.html +72 -0
- data/_sass/bootstrap/js/tests/visual/tooltip.html +106 -0
- data/_sass/bootstrap/scss/_alert.scss +51 -0
- data/_sass/bootstrap/scss/_badge.scss +53 -0
- data/_sass/bootstrap/scss/_breadcrumb.scss +41 -0
- data/_sass/bootstrap/scss/_button-group.scss +163 -0
- data/_sass/bootstrap/scss/_buttons.scss +140 -0
- data/_sass/bootstrap/scss/_card.scss +310 -0
- data/_sass/bootstrap/scss/_carousel.scss +198 -0
- data/_sass/bootstrap/scss/_close.scss +44 -0
- data/_sass/bootstrap/scss/_code.scss +48 -0
- data/_sass/bootstrap/scss/_custom-forms.scss +507 -0
- data/_sass/bootstrap/scss/_dropdown.scss +191 -0
- data/_sass/bootstrap/scss/_forms.scss +334 -0
- data/_sass/bootstrap/scss/_functions.scss +86 -0
- data/_sass/bootstrap/scss/_grid.scss +52 -0
- data/_sass/bootstrap/scss/_images.scss +42 -0
- data/_sass/bootstrap/scss/_input-group.scss +193 -0
- data/_sass/bootstrap/scss/_jumbotron.scss +16 -0
- data/_sass/bootstrap/scss/_list-group.scss +121 -0
- data/_sass/bootstrap/scss/_media.scss +8 -0
- data/_sass/bootstrap/scss/_mixins.scss +41 -0
- data/_sass/bootstrap/scss/_modal.scss +186 -0
- data/_sass/bootstrap/scss/_nav.scss +120 -0
- data/_sass/bootstrap/scss/_navbar.scss +299 -0
- data/_sass/bootstrap/scss/_pagination.scss +78 -0
- data/_sass/bootstrap/scss/_popover.scss +183 -0
- data/_sass/bootstrap/scss/_print.scss +141 -0
- data/_sass/bootstrap/scss/_progress.scss +34 -0
- data/_sass/bootstrap/scss/_reboot.scss +462 -0
- data/_sass/bootstrap/scss/_root.scss +19 -0
- data/_sass/bootstrap/scss/_spinners.scss +53 -0
- data/_sass/bootstrap/scss/_tables.scss +187 -0
- data/_sass/bootstrap/scss/_toasts.scss +43 -0
- data/_sass/bootstrap/scss/_tooltip.scss +115 -0
- data/_sass/bootstrap/scss/_transitions.scss +22 -0
- data/_sass/bootstrap/scss/_type.scss +125 -0
- data/_sass/bootstrap/scss/_utilities.scss +16 -0
- data/_sass/bootstrap/scss/_variables.scss +1091 -0
- data/_sass/bootstrap/scss/bootstrap-grid.scss +29 -0
- data/_sass/bootstrap/scss/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/scss/bootstrap.scss +44 -0
- data/_sass/bootstrap/scss/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/scss/mixins/_background-variant.scss +21 -0
- data/_sass/bootstrap/scss/mixins/_badge.scss +11 -0
- data/_sass/bootstrap/scss/mixins/_border-radius.scss +35 -0
- data/_sass/bootstrap/scss/mixins/_box-shadow.scss +5 -0
- data/_sass/bootstrap/scss/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/scss/mixins/_buttons.scss +111 -0
- data/_sass/bootstrap/scss/mixins/_caret.scss +62 -0
- data/_sass/bootstrap/scss/mixins/_clearfix.scss +7 -0
- data/_sass/bootstrap/scss/mixins/_float.scss +11 -0
- data/_sass/bootstrap/scss/mixins/_forms.scss +198 -0
- data/_sass/bootstrap/scss/mixins/_gradients.scss +45 -0
- data/_sass/bootstrap/scss/mixins/_grid-framework.scss +66 -0
- data/_sass/bootstrap/scss/mixins/_grid.scss +51 -0
- data/_sass/bootstrap/scss/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/scss/mixins/_image.scss +36 -0
- data/_sass/bootstrap/scss/mixins/_list-group.scss +21 -0
- data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/scss/mixins/_nav-divider.scss +10 -0
- data/_sass/bootstrap/scss/mixins/_pagination.scss +22 -0
- data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/scss/mixins/_screen-reader.scss +33 -0
- data/_sass/bootstrap/scss/mixins/_size.scss +6 -0
- data/_sass/bootstrap/scss/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/scss/mixins/_text-emphasis.scss +14 -0
- data/_sass/bootstrap/scss/mixins/_text-hide.scss +13 -0
- data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/scss/mixins/_transition.scss +16 -0
- data/_sass/bootstrap/scss/mixins/_visibility.scss +7 -0
- data/_sass/bootstrap/scss/utilities/_align.scss +8 -0
- data/_sass/bootstrap/scss/utilities/_background.scss +19 -0
- data/_sass/bootstrap/scss/utilities/_borders.scss +63 -0
- data/_sass/bootstrap/scss/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/scss/utilities/_display.scss +38 -0
- data/_sass/bootstrap/scss/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/scss/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/scss/utilities/_float.scss +9 -0
- data/_sass/bootstrap/scss/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/scss/utilities/_position.scss +32 -0
- data/_sass/bootstrap/scss/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/scss/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/scss/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/scss/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/scss/utilities/_text.scss +67 -0
- data/_sass/bootstrap/scss/utilities/_visibility.scss +11 -0
- data/_sass/custom.scss +1 -0
- data/assets/css/style.scss +65 -0
- data/assets/images/vertx-square.svg +1 -0
- metadata +248 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
@each $breakpoint in map-keys($grid-breakpoints) {
|
2
|
+
@include media-breakpoint-up($breakpoint) {
|
3
|
+
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
4
|
+
|
5
|
+
.float#{$infix}-left { @include float-left; }
|
6
|
+
.float#{$infix}-right { @include float-right; }
|
7
|
+
.float#{$infix}-none { @include float-none; }
|
8
|
+
}
|
9
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
// stylelint-disable declaration-no-important
|
2
|
+
|
3
|
+
// Common values
|
4
|
+
@each $position in $positions {
|
5
|
+
.position-#{$position} { position: $position !important; }
|
6
|
+
}
|
7
|
+
|
8
|
+
// Shorthand
|
9
|
+
|
10
|
+
.fixed-top {
|
11
|
+
position: fixed;
|
12
|
+
top: 0;
|
13
|
+
right: 0;
|
14
|
+
left: 0;
|
15
|
+
z-index: $zindex-fixed;
|
16
|
+
}
|
17
|
+
|
18
|
+
.fixed-bottom {
|
19
|
+
position: fixed;
|
20
|
+
right: 0;
|
21
|
+
bottom: 0;
|
22
|
+
left: 0;
|
23
|
+
z-index: $zindex-fixed;
|
24
|
+
}
|
25
|
+
|
26
|
+
.sticky-top {
|
27
|
+
@supports (position: sticky) {
|
28
|
+
position: sticky;
|
29
|
+
top: 0;
|
30
|
+
z-index: $zindex-sticky;
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
// stylelint-disable declaration-no-important
|
2
|
+
|
3
|
+
// Width and height
|
4
|
+
|
5
|
+
@each $prop, $abbrev in (width: w, height: h) {
|
6
|
+
@each $size, $length in $sizes {
|
7
|
+
.#{$abbrev}-#{$size} { #{$prop}: $length !important; }
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
.mw-100 { max-width: 100% !important; }
|
12
|
+
.mh-100 { max-height: 100% !important; }
|
13
|
+
|
14
|
+
// Viewport additional helpers
|
15
|
+
|
16
|
+
.min-vw-100 { min-width: 100vw !important; }
|
17
|
+
.min-vh-100 { min-height: 100vh !important; }
|
18
|
+
|
19
|
+
.vw-100 { width: 100vw !important; }
|
20
|
+
.vh-100 { height: 100vh !important; }
|
@@ -0,0 +1,73 @@
|
|
1
|
+
// stylelint-disable declaration-no-important
|
2
|
+
|
3
|
+
// Margin and Padding
|
4
|
+
|
5
|
+
@each $breakpoint in map-keys($grid-breakpoints) {
|
6
|
+
@include media-breakpoint-up($breakpoint) {
|
7
|
+
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
8
|
+
|
9
|
+
@each $prop, $abbrev in (margin: m, padding: p) {
|
10
|
+
@each $size, $length in $spacers {
|
11
|
+
.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
|
12
|
+
.#{$abbrev}t#{$infix}-#{$size},
|
13
|
+
.#{$abbrev}y#{$infix}-#{$size} {
|
14
|
+
#{$prop}-top: $length !important;
|
15
|
+
}
|
16
|
+
.#{$abbrev}r#{$infix}-#{$size},
|
17
|
+
.#{$abbrev}x#{$infix}-#{$size} {
|
18
|
+
#{$prop}-right: $length !important;
|
19
|
+
}
|
20
|
+
.#{$abbrev}b#{$infix}-#{$size},
|
21
|
+
.#{$abbrev}y#{$infix}-#{$size} {
|
22
|
+
#{$prop}-bottom: $length !important;
|
23
|
+
}
|
24
|
+
.#{$abbrev}l#{$infix}-#{$size},
|
25
|
+
.#{$abbrev}x#{$infix}-#{$size} {
|
26
|
+
#{$prop}-left: $length !important;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
// Negative margins (e.g., where `.mb-n1` is negative version of `.mb-1`)
|
32
|
+
@each $size, $length in $spacers {
|
33
|
+
@if $size != 0 {
|
34
|
+
.m#{$infix}-n#{$size} { margin: -$length !important; }
|
35
|
+
.mt#{$infix}-n#{$size},
|
36
|
+
.my#{$infix}-n#{$size} {
|
37
|
+
margin-top: -$length !important;
|
38
|
+
}
|
39
|
+
.mr#{$infix}-n#{$size},
|
40
|
+
.mx#{$infix}-n#{$size} {
|
41
|
+
margin-right: -$length !important;
|
42
|
+
}
|
43
|
+
.mb#{$infix}-n#{$size},
|
44
|
+
.my#{$infix}-n#{$size} {
|
45
|
+
margin-bottom: -$length !important;
|
46
|
+
}
|
47
|
+
.ml#{$infix}-n#{$size},
|
48
|
+
.mx#{$infix}-n#{$size} {
|
49
|
+
margin-left: -$length !important;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
// Some special margin utils
|
55
|
+
.m#{$infix}-auto { margin: auto !important; }
|
56
|
+
.mt#{$infix}-auto,
|
57
|
+
.my#{$infix}-auto {
|
58
|
+
margin-top: auto !important;
|
59
|
+
}
|
60
|
+
.mr#{$infix}-auto,
|
61
|
+
.mx#{$infix}-auto {
|
62
|
+
margin-right: auto !important;
|
63
|
+
}
|
64
|
+
.mb#{$infix}-auto,
|
65
|
+
.my#{$infix}-auto {
|
66
|
+
margin-bottom: auto !important;
|
67
|
+
}
|
68
|
+
.ml#{$infix}-auto,
|
69
|
+
.mx#{$infix}-auto {
|
70
|
+
margin-left: auto !important;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
// stylelint-disable declaration-no-important
|
2
|
+
|
3
|
+
//
|
4
|
+
// Text
|
5
|
+
//
|
6
|
+
|
7
|
+
.text-monospace { font-family: $font-family-monospace; }
|
8
|
+
|
9
|
+
// Alignment
|
10
|
+
|
11
|
+
.text-justify { text-align: justify !important; }
|
12
|
+
.text-wrap { white-space: normal !important; }
|
13
|
+
.text-nowrap { white-space: nowrap !important; }
|
14
|
+
.text-truncate { @include text-truncate; }
|
15
|
+
|
16
|
+
// Responsive alignment
|
17
|
+
|
18
|
+
@each $breakpoint in map-keys($grid-breakpoints) {
|
19
|
+
@include media-breakpoint-up($breakpoint) {
|
20
|
+
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
21
|
+
|
22
|
+
.text#{$infix}-left { text-align: left !important; }
|
23
|
+
.text#{$infix}-right { text-align: right !important; }
|
24
|
+
.text#{$infix}-center { text-align: center !important; }
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
// Transformation
|
29
|
+
|
30
|
+
.text-lowercase { text-transform: lowercase !important; }
|
31
|
+
.text-uppercase { text-transform: uppercase !important; }
|
32
|
+
.text-capitalize { text-transform: capitalize !important; }
|
33
|
+
|
34
|
+
// Weight and italics
|
35
|
+
|
36
|
+
.font-weight-light { font-weight: $font-weight-light !important; }
|
37
|
+
.font-weight-lighter { font-weight: $font-weight-lighter !important; }
|
38
|
+
.font-weight-normal { font-weight: $font-weight-normal !important; }
|
39
|
+
.font-weight-bold { font-weight: $font-weight-bold !important; }
|
40
|
+
.font-weight-bolder { font-weight: $font-weight-bolder !important; }
|
41
|
+
.font-italic { font-style: italic !important; }
|
42
|
+
|
43
|
+
// Contextual colors
|
44
|
+
|
45
|
+
.text-white { color: $white !important; }
|
46
|
+
|
47
|
+
@each $color, $value in $theme-colors {
|
48
|
+
@include text-emphasis-variant(".text-#{$color}", $value);
|
49
|
+
}
|
50
|
+
|
51
|
+
.text-body { color: $body-color !important; }
|
52
|
+
.text-muted { color: $text-muted !important; }
|
53
|
+
|
54
|
+
.text-black-50 { color: rgba($black, .5) !important; }
|
55
|
+
.text-white-50 { color: rgba($white, .5) !important; }
|
56
|
+
|
57
|
+
// Misc
|
58
|
+
|
59
|
+
.text-hide {
|
60
|
+
@include text-hide($ignore-warning: true);
|
61
|
+
}
|
62
|
+
|
63
|
+
.text-decoration-none { text-decoration: none !important; }
|
64
|
+
|
65
|
+
// Reset
|
66
|
+
|
67
|
+
.text-reset { color: inherit !important; }
|
data/_sass/custom.scss
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
@import "bootstrap/scss/bootstrap";
|
@@ -0,0 +1,65 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
// Fonts and definitions
|
5
|
+
|
6
|
+
@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Mono|IBM+Plex+Sans");
|
7
|
+
|
8
|
+
$font-size-base: 1.05rem;
|
9
|
+
$font-family-sans-serif: "IBM Plex Sans", sans-serif;
|
10
|
+
$font-family-monospace: "IBM Plex Mono", monospace;
|
11
|
+
|
12
|
+
$purple: #782b90;
|
13
|
+
$link-color: $purple;
|
14
|
+
|
15
|
+
// Bootstrap
|
16
|
+
|
17
|
+
@import "custom";
|
18
|
+
|
19
|
+
// My stuff
|
20
|
+
|
21
|
+
.bg-purple {
|
22
|
+
background-color: $purple;
|
23
|
+
}
|
24
|
+
|
25
|
+
@mixin purple-margin() {
|
26
|
+
border-left: solid 0.25em $purple;
|
27
|
+
padding: 0.5em;
|
28
|
+
padding-left: 1em;
|
29
|
+
background-color: $gray-100;
|
30
|
+
border-radius: 0.5em;
|
31
|
+
box-shadow: $box-shadow-sm;
|
32
|
+
}
|
33
|
+
|
34
|
+
pre.highlight {
|
35
|
+
@include purple-margin();
|
36
|
+
}
|
37
|
+
|
38
|
+
.title {
|
39
|
+
color: $purple;
|
40
|
+
font-weight: bold;
|
41
|
+
font-style: italic;
|
42
|
+
line-height: 1.4;
|
43
|
+
margin-top: 0.2em;
|
44
|
+
margin-bottom: 0.5em;
|
45
|
+
}
|
46
|
+
|
47
|
+
.admonitionblock {
|
48
|
+
@include purple-margin();
|
49
|
+
margin-bottom: 1em;
|
50
|
+
div {
|
51
|
+
margin: 0;
|
52
|
+
}
|
53
|
+
td.icon {
|
54
|
+
vertical-align: top;
|
55
|
+
padding-right: 0.2em;
|
56
|
+
.title {
|
57
|
+
font-style: normal;
|
58
|
+
font-weight: bold;
|
59
|
+
text-transform: uppercase;
|
60
|
+
&:after {
|
61
|
+
content: ': ';
|
62
|
+
}
|
63
|
+
}
|
64
|
+
}
|
65
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="152.355" height="152.355" viewBox="0 0 40.310665 40.310665"><g transform="translate(-71.357 -110.488)"><rect width="38.412" height="38.412" x="72.307" y="111.438" ry="3.985" rx="4.675" fill="#782a90" stroke="#782a90" stroke-width="1.899" stroke-linejoin="round"/><path d="M70.564 118.744h6.175l6.119 14.072 6.38-13.924h5.898l-10.71 23.526h-3.397z" fill="#fff" fill-rule="evenodd"/><path d="M89.179 118.78h7.459l4.59 6.657 4.59-6.656h7.345l-16.64 23.526h-7.23l8.378-11.706zM102.488 138.338l3.443-4.935 6.426 8.837h-7.23z" fill="#fff" fill-rule="evenodd"/><circle cx="88.728" cy="142.316" r="4.398" fill="#fff" stroke="#782a90" stroke-width="2.111" stroke-linejoin="round"/></g></svg>
|
metadata
ADDED
@@ -0,0 +1,248 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: vertx-howtos-jekyll-theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Julien Ponge
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-02-08 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.8'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.8'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.16'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.16'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '12.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '12.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- julien.ponge@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _layouts/page.html
|
65
|
+
- _sass/bootstrap/js/dist/alert.js
|
66
|
+
- _sass/bootstrap/js/dist/alert.js.map
|
67
|
+
- _sass/bootstrap/js/dist/button.js
|
68
|
+
- _sass/bootstrap/js/dist/button.js.map
|
69
|
+
- _sass/bootstrap/js/dist/carousel.js
|
70
|
+
- _sass/bootstrap/js/dist/carousel.js.map
|
71
|
+
- _sass/bootstrap/js/dist/collapse.js
|
72
|
+
- _sass/bootstrap/js/dist/collapse.js.map
|
73
|
+
- _sass/bootstrap/js/dist/dropdown.js
|
74
|
+
- _sass/bootstrap/js/dist/dropdown.js.map
|
75
|
+
- _sass/bootstrap/js/dist/index.js
|
76
|
+
- _sass/bootstrap/js/dist/index.js.map
|
77
|
+
- _sass/bootstrap/js/dist/modal.js
|
78
|
+
- _sass/bootstrap/js/dist/modal.js.map
|
79
|
+
- _sass/bootstrap/js/dist/popover.js
|
80
|
+
- _sass/bootstrap/js/dist/popover.js.map
|
81
|
+
- _sass/bootstrap/js/dist/scrollspy.js
|
82
|
+
- _sass/bootstrap/js/dist/scrollspy.js.map
|
83
|
+
- _sass/bootstrap/js/dist/tab.js
|
84
|
+
- _sass/bootstrap/js/dist/tab.js.map
|
85
|
+
- _sass/bootstrap/js/dist/toast.js
|
86
|
+
- _sass/bootstrap/js/dist/toast.js.map
|
87
|
+
- _sass/bootstrap/js/dist/tooltip.js
|
88
|
+
- _sass/bootstrap/js/dist/tooltip.js.map
|
89
|
+
- _sass/bootstrap/js/dist/util.js
|
90
|
+
- _sass/bootstrap/js/dist/util.js.map
|
91
|
+
- _sass/bootstrap/js/src/alert.js
|
92
|
+
- _sass/bootstrap/js/src/button.js
|
93
|
+
- _sass/bootstrap/js/src/carousel.js
|
94
|
+
- _sass/bootstrap/js/src/collapse.js
|
95
|
+
- _sass/bootstrap/js/src/dropdown.js
|
96
|
+
- _sass/bootstrap/js/src/index.js
|
97
|
+
- _sass/bootstrap/js/src/modal.js
|
98
|
+
- _sass/bootstrap/js/src/popover.js
|
99
|
+
- _sass/bootstrap/js/src/scrollspy.js
|
100
|
+
- _sass/bootstrap/js/src/tab.js
|
101
|
+
- _sass/bootstrap/js/src/toast.js
|
102
|
+
- _sass/bootstrap/js/src/tooltip.js
|
103
|
+
- _sass/bootstrap/js/src/util.js
|
104
|
+
- _sass/bootstrap/js/tests/README.md
|
105
|
+
- _sass/bootstrap/js/tests/browsers.js
|
106
|
+
- _sass/bootstrap/js/tests/index.html
|
107
|
+
- _sass/bootstrap/js/tests/integration/bundle.js
|
108
|
+
- _sass/bootstrap/js/tests/integration/index.html
|
109
|
+
- _sass/bootstrap/js/tests/integration/rollup.bundle.js
|
110
|
+
- _sass/bootstrap/js/tests/karma.conf.js
|
111
|
+
- _sass/bootstrap/js/tests/unit/.eslintrc.json
|
112
|
+
- _sass/bootstrap/js/tests/unit/alert.js
|
113
|
+
- _sass/bootstrap/js/tests/unit/button.js
|
114
|
+
- _sass/bootstrap/js/tests/unit/carousel.js
|
115
|
+
- _sass/bootstrap/js/tests/unit/collapse.js
|
116
|
+
- _sass/bootstrap/js/tests/unit/dropdown.js
|
117
|
+
- _sass/bootstrap/js/tests/unit/modal.js
|
118
|
+
- _sass/bootstrap/js/tests/unit/popover.js
|
119
|
+
- _sass/bootstrap/js/tests/unit/scrollspy.js
|
120
|
+
- _sass/bootstrap/js/tests/unit/tab.js
|
121
|
+
- _sass/bootstrap/js/tests/unit/toast.js
|
122
|
+
- _sass/bootstrap/js/tests/unit/tooltip.js
|
123
|
+
- _sass/bootstrap/js/tests/unit/util.js
|
124
|
+
- _sass/bootstrap/js/tests/visual/alert.html
|
125
|
+
- _sass/bootstrap/js/tests/visual/button.html
|
126
|
+
- _sass/bootstrap/js/tests/visual/carousel.html
|
127
|
+
- _sass/bootstrap/js/tests/visual/collapse.html
|
128
|
+
- _sass/bootstrap/js/tests/visual/dropdown.html
|
129
|
+
- _sass/bootstrap/js/tests/visual/modal.html
|
130
|
+
- _sass/bootstrap/js/tests/visual/popover.html
|
131
|
+
- _sass/bootstrap/js/tests/visual/scrollspy.html
|
132
|
+
- _sass/bootstrap/js/tests/visual/tab.html
|
133
|
+
- _sass/bootstrap/js/tests/visual/toast.html
|
134
|
+
- _sass/bootstrap/js/tests/visual/tooltip.html
|
135
|
+
- _sass/bootstrap/scss/_alert.scss
|
136
|
+
- _sass/bootstrap/scss/_badge.scss
|
137
|
+
- _sass/bootstrap/scss/_breadcrumb.scss
|
138
|
+
- _sass/bootstrap/scss/_button-group.scss
|
139
|
+
- _sass/bootstrap/scss/_buttons.scss
|
140
|
+
- _sass/bootstrap/scss/_card.scss
|
141
|
+
- _sass/bootstrap/scss/_carousel.scss
|
142
|
+
- _sass/bootstrap/scss/_close.scss
|
143
|
+
- _sass/bootstrap/scss/_code.scss
|
144
|
+
- _sass/bootstrap/scss/_custom-forms.scss
|
145
|
+
- _sass/bootstrap/scss/_dropdown.scss
|
146
|
+
- _sass/bootstrap/scss/_forms.scss
|
147
|
+
- _sass/bootstrap/scss/_functions.scss
|
148
|
+
- _sass/bootstrap/scss/_grid.scss
|
149
|
+
- _sass/bootstrap/scss/_images.scss
|
150
|
+
- _sass/bootstrap/scss/_input-group.scss
|
151
|
+
- _sass/bootstrap/scss/_jumbotron.scss
|
152
|
+
- _sass/bootstrap/scss/_list-group.scss
|
153
|
+
- _sass/bootstrap/scss/_media.scss
|
154
|
+
- _sass/bootstrap/scss/_mixins.scss
|
155
|
+
- _sass/bootstrap/scss/_modal.scss
|
156
|
+
- _sass/bootstrap/scss/_nav.scss
|
157
|
+
- _sass/bootstrap/scss/_navbar.scss
|
158
|
+
- _sass/bootstrap/scss/_pagination.scss
|
159
|
+
- _sass/bootstrap/scss/_popover.scss
|
160
|
+
- _sass/bootstrap/scss/_print.scss
|
161
|
+
- _sass/bootstrap/scss/_progress.scss
|
162
|
+
- _sass/bootstrap/scss/_reboot.scss
|
163
|
+
- _sass/bootstrap/scss/_root.scss
|
164
|
+
- _sass/bootstrap/scss/_spinners.scss
|
165
|
+
- _sass/bootstrap/scss/_tables.scss
|
166
|
+
- _sass/bootstrap/scss/_toasts.scss
|
167
|
+
- _sass/bootstrap/scss/_tooltip.scss
|
168
|
+
- _sass/bootstrap/scss/_transitions.scss
|
169
|
+
- _sass/bootstrap/scss/_type.scss
|
170
|
+
- _sass/bootstrap/scss/_utilities.scss
|
171
|
+
- _sass/bootstrap/scss/_variables.scss
|
172
|
+
- _sass/bootstrap/scss/bootstrap-grid.scss
|
173
|
+
- _sass/bootstrap/scss/bootstrap-reboot.scss
|
174
|
+
- _sass/bootstrap/scss/bootstrap.scss
|
175
|
+
- _sass/bootstrap/scss/mixins/_alert.scss
|
176
|
+
- _sass/bootstrap/scss/mixins/_background-variant.scss
|
177
|
+
- _sass/bootstrap/scss/mixins/_badge.scss
|
178
|
+
- _sass/bootstrap/scss/mixins/_border-radius.scss
|
179
|
+
- _sass/bootstrap/scss/mixins/_box-shadow.scss
|
180
|
+
- _sass/bootstrap/scss/mixins/_breakpoints.scss
|
181
|
+
- _sass/bootstrap/scss/mixins/_buttons.scss
|
182
|
+
- _sass/bootstrap/scss/mixins/_caret.scss
|
183
|
+
- _sass/bootstrap/scss/mixins/_clearfix.scss
|
184
|
+
- _sass/bootstrap/scss/mixins/_float.scss
|
185
|
+
- _sass/bootstrap/scss/mixins/_forms.scss
|
186
|
+
- _sass/bootstrap/scss/mixins/_gradients.scss
|
187
|
+
- _sass/bootstrap/scss/mixins/_grid-framework.scss
|
188
|
+
- _sass/bootstrap/scss/mixins/_grid.scss
|
189
|
+
- _sass/bootstrap/scss/mixins/_hover.scss
|
190
|
+
- _sass/bootstrap/scss/mixins/_image.scss
|
191
|
+
- _sass/bootstrap/scss/mixins/_list-group.scss
|
192
|
+
- _sass/bootstrap/scss/mixins/_lists.scss
|
193
|
+
- _sass/bootstrap/scss/mixins/_nav-divider.scss
|
194
|
+
- _sass/bootstrap/scss/mixins/_pagination.scss
|
195
|
+
- _sass/bootstrap/scss/mixins/_reset-text.scss
|
196
|
+
- _sass/bootstrap/scss/mixins/_resize.scss
|
197
|
+
- _sass/bootstrap/scss/mixins/_screen-reader.scss
|
198
|
+
- _sass/bootstrap/scss/mixins/_size.scss
|
199
|
+
- _sass/bootstrap/scss/mixins/_table-row.scss
|
200
|
+
- _sass/bootstrap/scss/mixins/_text-emphasis.scss
|
201
|
+
- _sass/bootstrap/scss/mixins/_text-hide.scss
|
202
|
+
- _sass/bootstrap/scss/mixins/_text-truncate.scss
|
203
|
+
- _sass/bootstrap/scss/mixins/_transition.scss
|
204
|
+
- _sass/bootstrap/scss/mixins/_visibility.scss
|
205
|
+
- _sass/bootstrap/scss/utilities/_align.scss
|
206
|
+
- _sass/bootstrap/scss/utilities/_background.scss
|
207
|
+
- _sass/bootstrap/scss/utilities/_borders.scss
|
208
|
+
- _sass/bootstrap/scss/utilities/_clearfix.scss
|
209
|
+
- _sass/bootstrap/scss/utilities/_display.scss
|
210
|
+
- _sass/bootstrap/scss/utilities/_embed.scss
|
211
|
+
- _sass/bootstrap/scss/utilities/_flex.scss
|
212
|
+
- _sass/bootstrap/scss/utilities/_float.scss
|
213
|
+
- _sass/bootstrap/scss/utilities/_overflow.scss
|
214
|
+
- _sass/bootstrap/scss/utilities/_position.scss
|
215
|
+
- _sass/bootstrap/scss/utilities/_screenreaders.scss
|
216
|
+
- _sass/bootstrap/scss/utilities/_shadows.scss
|
217
|
+
- _sass/bootstrap/scss/utilities/_sizing.scss
|
218
|
+
- _sass/bootstrap/scss/utilities/_spacing.scss
|
219
|
+
- _sass/bootstrap/scss/utilities/_text.scss
|
220
|
+
- _sass/bootstrap/scss/utilities/_visibility.scss
|
221
|
+
- _sass/custom.scss
|
222
|
+
- assets/css/style.scss
|
223
|
+
- assets/images/vertx-square.svg
|
224
|
+
homepage: https://github.com/vertx-howtos/vertx-howtos-jekyll-theme
|
225
|
+
licenses:
|
226
|
+
- MIT
|
227
|
+
metadata: {}
|
228
|
+
post_install_message:
|
229
|
+
rdoc_options: []
|
230
|
+
require_paths:
|
231
|
+
- lib
|
232
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
233
|
+
requirements:
|
234
|
+
- - ">="
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: '0'
|
237
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
238
|
+
requirements:
|
239
|
+
- - ">="
|
240
|
+
- !ruby/object:Gem::Version
|
241
|
+
version: '0'
|
242
|
+
requirements: []
|
243
|
+
rubyforge_project:
|
244
|
+
rubygems_version: 2.7.8
|
245
|
+
signing_key:
|
246
|
+
specification_version: 4
|
247
|
+
summary: Theme for the Vert.x howtos
|
248
|
+
test_files: []
|