geekyll 0.0.9
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 +48 -0
- data/_includes/footer.html +20 -0
- data/_includes/head.html +27 -0
- data/_includes/header.html +18 -0
- data/_includes/image.html +14 -0
- data/_includes/javascripts.html +7 -0
- data/_includes/navigation.html +16 -0
- data/_includes/social.html +15 -0
- data/_layouts/default.html +10 -0
- data/_layouts/index.html +48 -0
- data/_layouts/page.html +23 -0
- data/_layouts/post.html +5 -0
- data/_layouts/root.html +14 -0
- data/_sass/geekyll/_icons.scss +9 -0
- data/_sass/geekyll/_layout.scss +233 -0
- data/_sass/geekyll/_pages.scss +232 -0
- data/_sass/geekyll/_typography.scss +4 -0
- data/_sass/geekyll/bootstrap4alpha4/_alert.scss +56 -0
- data/_sass/geekyll/bootstrap4alpha4/_animation.scss +27 -0
- data/_sass/geekyll/bootstrap4alpha4/_breadcrumb.scss +38 -0
- data/_sass/geekyll/bootstrap4alpha4/_button-group.scss +234 -0
- data/_sass/geekyll/bootstrap4alpha4/_buttons.scss +176 -0
- data/_sass/geekyll/bootstrap4alpha4/_card.scss +320 -0
- data/_sass/geekyll/bootstrap4alpha4/_carousel.scss +253 -0
- data/_sass/geekyll/bootstrap4alpha4/_close.scss +31 -0
- data/_sass/geekyll/bootstrap4alpha4/_code.scss +57 -0
- data/_sass/geekyll/bootstrap4alpha4/_custom-forms.scss +265 -0
- data/_sass/geekyll/bootstrap4alpha4/_custom.scss +4 -0
- data/_sass/geekyll/bootstrap4alpha4/_dropdown.scss +179 -0
- data/_sass/geekyll/bootstrap4alpha4/_forms.scss +364 -0
- data/_sass/geekyll/bootstrap4alpha4/_grid.scss +39 -0
- data/_sass/geekyll/bootstrap4alpha4/_images.scss +52 -0
- data/_sass/geekyll/bootstrap4alpha4/_input-group.scss +188 -0
- data/_sass/geekyll/bootstrap4alpha4/_jumbotron.scss +20 -0
- data/_sass/geekyll/bootstrap4alpha4/_list-group.scss +123 -0
- data/_sass/geekyll/bootstrap4alpha4/_media.scss +81 -0
- data/_sass/geekyll/bootstrap4alpha4/_mixins.scss +54 -0
- data/_sass/geekyll/bootstrap4alpha4/_modal.scss +132 -0
- data/_sass/geekyll/bootstrap4alpha4/_nav.scss +157 -0
- data/_sass/geekyll/bootstrap4alpha4/_navbar.scss +256 -0
- data/_sass/geekyll/bootstrap4alpha4/_normalize.scss +424 -0
- data/_sass/geekyll/bootstrap4alpha4/_pagination.scss +73 -0
- data/_sass/geekyll/bootstrap4alpha4/_popover.scss +147 -0
- data/_sass/geekyll/bootstrap4alpha4/_print.scss +116 -0
- data/_sass/geekyll/bootstrap4alpha4/_progress.scss +145 -0
- data/_sass/geekyll/bootstrap4alpha4/_reboot.scss +393 -0
- data/_sass/geekyll/bootstrap4alpha4/_responsive-embed.scss +39 -0
- data/_sass/geekyll/bootstrap4alpha4/_tables.scss +196 -0
- data/_sass/geekyll/bootstrap4alpha4/_tags.scss +77 -0
- data/_sass/geekyll/bootstrap4alpha4/_tooltip.scss +87 -0
- data/_sass/geekyll/bootstrap4alpha4/_type.scss +150 -0
- data/_sass/geekyll/bootstrap4alpha4/_utilities.scss +9 -0
- data/_sass/geekyll/bootstrap4alpha4/_variables.scss +830 -0
- data/_sass/geekyll/bootstrap4alpha4/bootstrap-flex.scss +8 -0
- data/_sass/geekyll/bootstrap4alpha4/bootstrap-grid.scss +23 -0
- data/_sass/geekyll/bootstrap4alpha4/bootstrap-reboot.scss +11 -0
- data/_sass/geekyll/bootstrap4alpha4/bootstrap.scss +54 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_alert.scss +14 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_background-variant.scss +13 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_border-radius.scss +35 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_breakpoints.scss +86 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_buttons.scss +113 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_cards.scss +44 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_clearfix.scss +7 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_forms.scss +86 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_gradients.scss +43 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_grid-framework.scss +70 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_grid.scss +84 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_hover.scss +60 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_image.scss +34 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_list-group.scss +30 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_lists.scss +7 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_nav-divider.scss +10 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_navbar-align.scss +9 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_pagination.scss +21 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_progress.scss +23 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_pulls.scss +6 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_reset-filter.scss +8 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_reset-text.scss +17 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_resize.scss +6 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_screen-reader.scss +32 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_size.scss +6 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_tab-focus.scss +9 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_table-row.scss +30 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_tag.scss +11 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_text-emphasis.scss +12 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_text-hide.scss +8 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_text-truncate.scss +8 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_background.scss +19 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_clearfix.scss +3 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_display.scss +13 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_flex.scss +37 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_pulls.scss +13 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_screenreaders.scss +11 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_spacing.scss +43 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_text.scss +51 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_visibility.scss +55 -0
- data/_sass/geekyll/reset.scss +9 -0
- data/_sass/geekyll/social.scss +5 -0
- data/_sass/geekyll.scss +39 -0
- data/screenshot.png +0 -0
- metadata +188 -0
@@ -0,0 +1,157 @@
|
|
1
|
+
// Base class
|
2
|
+
//
|
3
|
+
// Kickstart any navigation component with a set of style resets. Works with
|
4
|
+
// `<nav>`s or `<ul>`s.
|
5
|
+
|
6
|
+
.nav {
|
7
|
+
padding-left: 0;
|
8
|
+
margin-bottom: 0;
|
9
|
+
list-style: none;
|
10
|
+
}
|
11
|
+
|
12
|
+
.nav-link {
|
13
|
+
display: inline-block;
|
14
|
+
|
15
|
+
@include hover-focus {
|
16
|
+
text-decoration: none;
|
17
|
+
}
|
18
|
+
|
19
|
+
// Disabled state lightens text and removes hover/tab effects
|
20
|
+
&.disabled {
|
21
|
+
color: $nav-disabled-link-color;
|
22
|
+
|
23
|
+
@include plain-hover-focus {
|
24
|
+
color: $nav-disabled-link-hover-color;
|
25
|
+
cursor: $cursor-disabled;
|
26
|
+
background-color: $nav-disabled-link-hover-bg;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
|
32
|
+
// Nav inline
|
33
|
+
|
34
|
+
.nav-inline {
|
35
|
+
.nav-item {
|
36
|
+
display: inline-block;
|
37
|
+
}
|
38
|
+
|
39
|
+
.nav-item + .nav-item,
|
40
|
+
.nav-link + .nav-link {
|
41
|
+
margin-left: $nav-item-inline-spacer;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
//
|
47
|
+
// Tabs
|
48
|
+
//
|
49
|
+
|
50
|
+
.nav-tabs {
|
51
|
+
border-bottom: $nav-tabs-border-width solid $nav-tabs-border-color;
|
52
|
+
@include clearfix();
|
53
|
+
|
54
|
+
.nav-item {
|
55
|
+
float: left;
|
56
|
+
// Make the list-items overlay the bottom border
|
57
|
+
margin-bottom: -$nav-tabs-border-width;
|
58
|
+
|
59
|
+
+ .nav-item {
|
60
|
+
margin-left: $nav-item-margin;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
.nav-link {
|
65
|
+
display: block;
|
66
|
+
padding: $nav-link-padding;
|
67
|
+
border: $nav-tabs-border-width solid transparent;
|
68
|
+
@include border-top-radius($nav-tabs-border-radius);
|
69
|
+
|
70
|
+
@include hover-focus {
|
71
|
+
border-color: $nav-tabs-link-hover-border-color $nav-tabs-link-hover-border-color $nav-tabs-border-color;
|
72
|
+
}
|
73
|
+
|
74
|
+
&.disabled {
|
75
|
+
@include plain-hover-focus {
|
76
|
+
color: $nav-disabled-link-color;
|
77
|
+
background-color: transparent;
|
78
|
+
border-color: transparent;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
.nav-link.active,
|
84
|
+
.nav-item.open .nav-link {
|
85
|
+
@include plain-hover-focus {
|
86
|
+
color: $nav-tabs-active-link-hover-color;
|
87
|
+
background-color: $nav-tabs-active-link-hover-bg;
|
88
|
+
border-color: $nav-tabs-active-link-hover-border-color $nav-tabs-active-link-hover-border-color transparent;
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
.dropdown-menu {
|
93
|
+
// Make dropdown border overlap tab border
|
94
|
+
margin-top: -$nav-tabs-border-width;
|
95
|
+
// Remove the top rounded corners here since there is a hard edge above the menu
|
96
|
+
@include border-top-radius(0);
|
97
|
+
}
|
98
|
+
}
|
99
|
+
|
100
|
+
|
101
|
+
//
|
102
|
+
// Pills
|
103
|
+
//
|
104
|
+
|
105
|
+
.nav-pills {
|
106
|
+
@include clearfix();
|
107
|
+
|
108
|
+
.nav-item {
|
109
|
+
float: left;
|
110
|
+
|
111
|
+
+ .nav-item {
|
112
|
+
margin-left: $nav-item-margin;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
|
116
|
+
.nav-link {
|
117
|
+
display: block;
|
118
|
+
padding: $nav-link-padding;
|
119
|
+
@include border-radius($nav-pills-border-radius);
|
120
|
+
}
|
121
|
+
|
122
|
+
.nav-link.active,
|
123
|
+
.nav-item.open .nav-link {
|
124
|
+
@include plain-hover-focus {
|
125
|
+
color: $nav-pills-active-link-color;
|
126
|
+
cursor: default;
|
127
|
+
background-color: $nav-pills-active-link-bg;
|
128
|
+
}
|
129
|
+
}
|
130
|
+
}
|
131
|
+
|
132
|
+
.nav-stacked {
|
133
|
+
.nav-item {
|
134
|
+
display: block;
|
135
|
+
float: none;
|
136
|
+
|
137
|
+
+ .nav-item {
|
138
|
+
margin-top: $nav-item-margin;
|
139
|
+
margin-left: 0;
|
140
|
+
}
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
|
145
|
+
//
|
146
|
+
// Tabbable tabs
|
147
|
+
//
|
148
|
+
|
149
|
+
// Hide tabbable panes to start, show them when `.active`
|
150
|
+
.tab-content {
|
151
|
+
> .tab-pane {
|
152
|
+
display: none;
|
153
|
+
}
|
154
|
+
> .active {
|
155
|
+
display: block;
|
156
|
+
}
|
157
|
+
}
|
@@ -0,0 +1,256 @@
|
|
1
|
+
// Wrapper and base class
|
2
|
+
//
|
3
|
+
// Provide a static navbar from which we expand to create full-width, fixed, and
|
4
|
+
// other navbar variations.
|
5
|
+
|
6
|
+
.navbar {
|
7
|
+
position: relative;
|
8
|
+
padding: $navbar-padding-y $navbar-padding-x;
|
9
|
+
@include clearfix;
|
10
|
+
|
11
|
+
@include media-breakpoint-up(sm) {
|
12
|
+
@include border-radius($navbar-border-radius);
|
13
|
+
}
|
14
|
+
}
|
15
|
+
|
16
|
+
|
17
|
+
// Navbar alignment options
|
18
|
+
//
|
19
|
+
// Display the navbar across the entirety of the page or fixed it to the top or
|
20
|
+
// bottom of the page.
|
21
|
+
|
22
|
+
// A static, full width modifier with no rounded corners.
|
23
|
+
.navbar-full {
|
24
|
+
z-index: $zindex-navbar;
|
25
|
+
|
26
|
+
@include media-breakpoint-up(sm) {
|
27
|
+
@include border-radius(0);
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
// Fix the top/bottom navbars when screen real estate supports it
|
32
|
+
.navbar-fixed-top,
|
33
|
+
.navbar-fixed-bottom {
|
34
|
+
position: fixed;
|
35
|
+
right: 0;
|
36
|
+
left: 0;
|
37
|
+
z-index: $zindex-navbar-fixed;
|
38
|
+
|
39
|
+
// Undo the rounded corners
|
40
|
+
@include media-breakpoint-up(sm) {
|
41
|
+
@include border-radius(0);
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
.navbar-fixed-top {
|
46
|
+
top: 0;
|
47
|
+
}
|
48
|
+
|
49
|
+
.navbar-fixed-bottom {
|
50
|
+
bottom: 0;
|
51
|
+
}
|
52
|
+
|
53
|
+
.navbar-sticky-top {
|
54
|
+
position: sticky;
|
55
|
+
top: 0;
|
56
|
+
z-index: $zindex-navbar-sticky;
|
57
|
+
width: 100%;
|
58
|
+
|
59
|
+
// Undo the rounded corners
|
60
|
+
@include media-breakpoint-up(sm) {
|
61
|
+
@include border-radius(0);
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
|
66
|
+
//
|
67
|
+
// Brand/project name
|
68
|
+
//
|
69
|
+
|
70
|
+
.navbar-brand {
|
71
|
+
float: left;
|
72
|
+
padding-top: $navbar-brand-padding-y;
|
73
|
+
padding-bottom: $navbar-brand-padding-y;
|
74
|
+
margin-right: 1rem;
|
75
|
+
font-size: $font-size-lg;
|
76
|
+
|
77
|
+
@include hover-focus {
|
78
|
+
text-decoration: none;
|
79
|
+
}
|
80
|
+
|
81
|
+
> img {
|
82
|
+
display: block;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
86
|
+
|
87
|
+
.navbar-divider {
|
88
|
+
float: left;
|
89
|
+
width: $border-width;
|
90
|
+
padding-top: .425rem;
|
91
|
+
padding-bottom: .425rem;
|
92
|
+
margin-right: $navbar-padding-x;
|
93
|
+
margin-left: $navbar-padding-x;
|
94
|
+
overflow: hidden;
|
95
|
+
|
96
|
+
&::before {
|
97
|
+
content: "\00a0";
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
|
102
|
+
// Navbar toggle
|
103
|
+
//
|
104
|
+
// Custom button for toggling the `.navbar-collapse`, powered by the collapse
|
105
|
+
// Bootstrap JavaScript plugin.
|
106
|
+
|
107
|
+
.navbar-toggler {
|
108
|
+
padding: .5rem .75rem;
|
109
|
+
font-size: $font-size-lg;
|
110
|
+
line-height: 1;
|
111
|
+
background: none;
|
112
|
+
border: $border-width solid transparent;
|
113
|
+
@include border-radius($btn-border-radius);
|
114
|
+
|
115
|
+
@include hover-focus {
|
116
|
+
text-decoration: none;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
120
|
+
// Navigation
|
121
|
+
//
|
122
|
+
// Custom navbar navigation built on the base `.nav` styles.
|
123
|
+
|
124
|
+
.navbar-nav {
|
125
|
+
.nav-item {
|
126
|
+
float: left;
|
127
|
+
}
|
128
|
+
|
129
|
+
.nav-link {
|
130
|
+
display: block;
|
131
|
+
padding-top: .425rem;
|
132
|
+
padding-bottom: .425rem;
|
133
|
+
|
134
|
+
+ .nav-link {
|
135
|
+
margin-left: 1rem;
|
136
|
+
}
|
137
|
+
}
|
138
|
+
|
139
|
+
.nav-item + .nav-item {
|
140
|
+
margin-left: 1rem;
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
// Dark links against a light background
|
145
|
+
.navbar-light {
|
146
|
+
.navbar-brand {
|
147
|
+
color: $navbar-light-active-color;
|
148
|
+
|
149
|
+
@include hover-focus {
|
150
|
+
color: $navbar-light-active-color;
|
151
|
+
}
|
152
|
+
}
|
153
|
+
|
154
|
+
.navbar-nav {
|
155
|
+
.nav-link {
|
156
|
+
color: $navbar-light-color;
|
157
|
+
|
158
|
+
@include hover-focus {
|
159
|
+
color: $navbar-light-hover-color;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
|
163
|
+
.open > .nav-link,
|
164
|
+
.active > .nav-link,
|
165
|
+
.nav-link.open,
|
166
|
+
.nav-link.active {
|
167
|
+
@include plain-hover-focus {
|
168
|
+
color: $navbar-light-active-color;
|
169
|
+
}
|
170
|
+
}
|
171
|
+
}
|
172
|
+
|
173
|
+
.navbar-divider {
|
174
|
+
background-color: rgba(0,0,0,.075);
|
175
|
+
}
|
176
|
+
}
|
177
|
+
|
178
|
+
// White links against a dark background
|
179
|
+
.navbar-dark {
|
180
|
+
.navbar-brand {
|
181
|
+
color: $navbar-dark-active-color;
|
182
|
+
|
183
|
+
@include hover-focus {
|
184
|
+
color: $navbar-dark-active-color;
|
185
|
+
}
|
186
|
+
}
|
187
|
+
|
188
|
+
.navbar-nav {
|
189
|
+
.nav-link {
|
190
|
+
color: $navbar-dark-color;
|
191
|
+
|
192
|
+
@include hover-focus {
|
193
|
+
color: $navbar-dark-hover-color;
|
194
|
+
}
|
195
|
+
}
|
196
|
+
|
197
|
+
.open > .nav-link,
|
198
|
+
.active > .nav-link,
|
199
|
+
.nav-link.open,
|
200
|
+
.nav-link.active {
|
201
|
+
@include plain-hover-focus {
|
202
|
+
color: $navbar-dark-active-color;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
}
|
206
|
+
|
207
|
+
.navbar-divider {
|
208
|
+
background-color: rgba(255,255,255,.075);
|
209
|
+
}
|
210
|
+
}
|
211
|
+
|
212
|
+
|
213
|
+
// Navbar toggleable
|
214
|
+
//
|
215
|
+
// Custom override for collapse plugin in navbar.
|
216
|
+
|
217
|
+
.navbar-toggleable {
|
218
|
+
&-xs {
|
219
|
+
@include clearfix;
|
220
|
+
@include media-breakpoint-down(xs) {
|
221
|
+
.navbar-nav .nav-item {
|
222
|
+
float: none;
|
223
|
+
margin-left: 0;
|
224
|
+
}
|
225
|
+
}
|
226
|
+
@include media-breakpoint-up(sm) {
|
227
|
+
display: block !important;
|
228
|
+
}
|
229
|
+
}
|
230
|
+
|
231
|
+
&-sm {
|
232
|
+
@include clearfix;
|
233
|
+
@include media-breakpoint-down(sm) {
|
234
|
+
.navbar-nav .nav-item {
|
235
|
+
float: none;
|
236
|
+
margin-left: 0;
|
237
|
+
}
|
238
|
+
}
|
239
|
+
@include media-breakpoint-up(md) {
|
240
|
+
display: block !important;
|
241
|
+
}
|
242
|
+
}
|
243
|
+
|
244
|
+
&-md {
|
245
|
+
@include clearfix;
|
246
|
+
@include media-breakpoint-down(md) {
|
247
|
+
.navbar-nav .nav-item {
|
248
|
+
float: none;
|
249
|
+
margin-left: 0;
|
250
|
+
}
|
251
|
+
}
|
252
|
+
@include media-breakpoint-up(lg) {
|
253
|
+
display: block !important;
|
254
|
+
}
|
255
|
+
}
|
256
|
+
}
|