mancalledmountain-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 +59 -0
- data/_includes/sidebar.html +34 -0
- data/_layouts/default.html +38 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +11 -0
- data/_sass/README.md +7 -0
- data/_sass/_main.scss +38 -0
- data/_sass/abstracts/README.md +7 -0
- data/_sass/abstracts/_functions.scss +30 -0
- data/_sass/abstracts/_mixins.scss +33 -0
- data/_sass/abstracts/_variables.scss +71 -0
- data/_sass/base/README.md +5 -0
- data/_sass/base/_base.scss +35 -0
- data/_sass/base/_fonts.scss +3 -0
- data/_sass/base/_helpers.scss +72 -0
- data/_sass/base/_typography.scss +15 -0
- data/_sass/components/README.md +5 -0
- data/_sass/components/_button.scss +3 -0
- data/_sass/layout/README.md +5 -0
- data/_sass/layout/_footer.scss +11 -0
- data/_sass/layout/_header.scss +6 -0
- data/_sass/layout/_sidebar.scss +106 -0
- data/_sass/pages/README.md +7 -0
- data/_sass/pages/_default.scss +27 -0
- data/_sass/pages/_home.scss +3 -0
- data/_sass/themes/README.md +7 -0
- data/_sass/themes/_default.scss +9 -0
- data/_sass/vendors/README.md +7 -0
- data/_sass/vendors/_normalize.scss +461 -0
- data/_sass/vendors/bootstrap/_alert.scss +51 -0
- data/_sass/vendors/bootstrap/_badge.scss +54 -0
- data/_sass/vendors/bootstrap/_bootstrap.scss +44 -0
- data/_sass/vendors/bootstrap/_breadcrumb.scss +41 -0
- data/_sass/vendors/bootstrap/_button-group.scss +163 -0
- data/_sass/vendors/bootstrap/_buttons.scss +137 -0
- data/_sass/vendors/bootstrap/_card.scss +289 -0
- data/_sass/vendors/bootstrap/_carousel.scss +197 -0
- data/_sass/vendors/bootstrap/_close.scss +41 -0
- data/_sass/vendors/bootstrap/_code.scss +48 -0
- data/_sass/vendors/bootstrap/_custom-forms.scss +507 -0
- data/_sass/vendors/bootstrap/_dropdown.scss +191 -0
- data/_sass/vendors/bootstrap/_forms.scss +330 -0
- data/_sass/vendors/bootstrap/_functions.scss +86 -0
- data/_sass/vendors/bootstrap/_grid.scss +52 -0
- data/_sass/vendors/bootstrap/_images.scss +42 -0
- data/_sass/vendors/bootstrap/_input-group.scss +193 -0
- data/_sass/vendors/bootstrap/_jumbotron.scss +17 -0
- data/_sass/vendors/bootstrap/_list-group.scss +149 -0
- data/_sass/vendors/bootstrap/_media.scss +8 -0
- data/_sass/vendors/bootstrap/_mixins.scss +47 -0
- data/_sass/vendors/bootstrap/_modal.scss +229 -0
- data/_sass/vendors/bootstrap/_nav.scss +120 -0
- data/_sass/vendors/bootstrap/_navbar.scss +294 -0
- data/_sass/vendors/bootstrap/_pagination.scss +73 -0
- data/_sass/vendors/bootstrap/_popover.scss +171 -0
- data/_sass/vendors/bootstrap/_print.scss +141 -0
- data/_sass/vendors/bootstrap/_progress.scss +43 -0
- data/_sass/vendors/bootstrap/_reboot.scss +483 -0
- data/_sass/vendors/bootstrap/_root.scss +19 -0
- data/_sass/vendors/bootstrap/_spinners.scss +55 -0
- data/_sass/vendors/bootstrap/_tables.scss +185 -0
- data/_sass/vendors/bootstrap/_toasts.scss +44 -0
- data/_sass/vendors/bootstrap/_tooltip.scss +115 -0
- data/_sass/vendors/bootstrap/_transitions.scss +20 -0
- data/_sass/vendors/bootstrap/_type.scss +125 -0
- data/_sass/vendors/bootstrap/_utilities.scss +17 -0
- data/_sass/vendors/bootstrap/_variables.scss +1123 -0
- data/_sass/vendors/bootstrap/bootstrap-_grid.scss +29 -0
- data/_sass/vendors/bootstrap/bootstrap-_reboot.scss +12 -0
- data/_sass/vendors/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/vendors/bootstrap/mixins/_background-variant.scss +21 -0
- data/_sass/vendors/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/vendors/bootstrap/mixins/_border-radius.scss +63 -0
- data/_sass/vendors/bootstrap/mixins/_box-shadow.scss +20 -0
- data/_sass/vendors/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/vendors/bootstrap/mixins/_buttons.scss +107 -0
- data/_sass/vendors/bootstrap/mixins/_caret.scss +62 -0
- data/_sass/vendors/bootstrap/mixins/_clearfix.scss +7 -0
- data/_sass/vendors/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/vendors/bootstrap/mixins/_float.scss +14 -0
- data/_sass/vendors/bootstrap/mixins/_forms.scss +192 -0
- data/_sass/vendors/bootstrap/mixins/_gradients.scss +45 -0
- data/_sass/vendors/bootstrap/mixins/_grid-framework.scss +66 -0
- data/_sass/vendors/bootstrap/mixins/_grid.scss +51 -0
- data/_sass/vendors/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/vendors/bootstrap/mixins/_image.scss +36 -0
- data/_sass/vendors/bootstrap/mixins/_list-group.scss +21 -0
- data/_sass/vendors/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/vendors/bootstrap/mixins/_nav-divider.scss +10 -0
- data/_sass/vendors/bootstrap/mixins/_pagination.scss +22 -0
- data/_sass/vendors/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/vendors/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/vendors/bootstrap/mixins/_screen-reader.scss +33 -0
- data/_sass/vendors/bootstrap/mixins/_size.scss +7 -0
- data/_sass/vendors/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/vendors/bootstrap/mixins/_text-emphasis.scss +16 -0
- data/_sass/vendors/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/vendors/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/vendors/bootstrap/mixins/_transition.scss +16 -0
- data/_sass/vendors/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/vendors/bootstrap/utilities/_align.scss +8 -0
- data/_sass/vendors/bootstrap/utilities/_background.scss +19 -0
- data/_sass/vendors/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/vendors/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/vendors/bootstrap/utilities/_display.scss +26 -0
- data/_sass/vendors/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/vendors/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/vendors/bootstrap/utilities/_float.scss +11 -0
- data/_sass/vendors/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/vendors/bootstrap/utilities/_position.scss +32 -0
- data/_sass/vendors/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/vendors/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/vendors/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/vendors/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/vendors/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/vendors/bootstrap/utilities/_text.scss +72 -0
- data/_sass/vendors/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/vendors/bootstrap/vendor/_rfs.scss +204 -0
- data/assets/images/richard_mountain.jpg +0 -0
- data/assets/style.scss +3 -0
- metadata +206 -0
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
// Notes on the classes:
|
|
2
|
+
//
|
|
3
|
+
// 1. .carousel.pointer-event should ideally be pan-y (to allow for users to scroll vertically)
|
|
4
|
+
// even when their scroll action started on a carousel, but for compatibility (with Firefox)
|
|
5
|
+
// we're preventing all actions instead
|
|
6
|
+
// 2. The .carousel-item-left and .carousel-item-right is used to indicate where
|
|
7
|
+
// the active slide is heading.
|
|
8
|
+
// 3. .active.carousel-item is the current slide.
|
|
9
|
+
// 4. .active.carousel-item-left and .active.carousel-item-right is the current
|
|
10
|
+
// slide in its in-transition state. Only one of these occurs at a time.
|
|
11
|
+
// 5. .carousel-item-next.carousel-item-left and .carousel-item-prev.carousel-item-right
|
|
12
|
+
// is the upcoming slide in transition.
|
|
13
|
+
|
|
14
|
+
.carousel {
|
|
15
|
+
position: relative;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.carousel.pointer-event {
|
|
19
|
+
touch-action: pan-y;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.carousel-inner {
|
|
23
|
+
position: relative;
|
|
24
|
+
width: 100%;
|
|
25
|
+
overflow: hidden;
|
|
26
|
+
@include clearfix();
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.carousel-item {
|
|
30
|
+
position: relative;
|
|
31
|
+
display: none;
|
|
32
|
+
float: left;
|
|
33
|
+
width: 100%;
|
|
34
|
+
margin-right: -100%;
|
|
35
|
+
backface-visibility: hidden;
|
|
36
|
+
@include transition($carousel-transition);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.carousel-item.active,
|
|
40
|
+
.carousel-item-next,
|
|
41
|
+
.carousel-item-prev {
|
|
42
|
+
display: block;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.carousel-item-next:not(.carousel-item-left),
|
|
46
|
+
.active.carousel-item-right {
|
|
47
|
+
transform: translateX(100%);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.carousel-item-prev:not(.carousel-item-right),
|
|
51
|
+
.active.carousel-item-left {
|
|
52
|
+
transform: translateX(-100%);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
//
|
|
57
|
+
// Alternate transitions
|
|
58
|
+
//
|
|
59
|
+
|
|
60
|
+
.carousel-fade {
|
|
61
|
+
.carousel-item {
|
|
62
|
+
opacity: 0;
|
|
63
|
+
transition-property: opacity;
|
|
64
|
+
transform: none;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.carousel-item.active,
|
|
68
|
+
.carousel-item-next.carousel-item-left,
|
|
69
|
+
.carousel-item-prev.carousel-item-right {
|
|
70
|
+
z-index: 1;
|
|
71
|
+
opacity: 1;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.active.carousel-item-left,
|
|
75
|
+
.active.carousel-item-right {
|
|
76
|
+
z-index: 0;
|
|
77
|
+
opacity: 0;
|
|
78
|
+
@include transition(0s $carousel-transition-duration opacity);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
//
|
|
84
|
+
// Left/right controls for nav
|
|
85
|
+
//
|
|
86
|
+
|
|
87
|
+
.carousel-control-prev,
|
|
88
|
+
.carousel-control-next {
|
|
89
|
+
position: absolute;
|
|
90
|
+
top: 0;
|
|
91
|
+
bottom: 0;
|
|
92
|
+
z-index: 1;
|
|
93
|
+
// Use flex for alignment (1-3)
|
|
94
|
+
display: flex; // 1. allow flex styles
|
|
95
|
+
align-items: center; // 2. vertically center contents
|
|
96
|
+
justify-content: center; // 3. horizontally center contents
|
|
97
|
+
width: $carousel-control-width;
|
|
98
|
+
color: $carousel-control-color;
|
|
99
|
+
text-align: center;
|
|
100
|
+
opacity: $carousel-control-opacity;
|
|
101
|
+
@include transition($carousel-control-transition);
|
|
102
|
+
|
|
103
|
+
// Hover/focus state
|
|
104
|
+
@include hover-focus {
|
|
105
|
+
color: $carousel-control-color;
|
|
106
|
+
text-decoration: none;
|
|
107
|
+
outline: 0;
|
|
108
|
+
opacity: $carousel-control-hover-opacity;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
.carousel-control-prev {
|
|
112
|
+
left: 0;
|
|
113
|
+
@if $enable-gradients {
|
|
114
|
+
background: linear-gradient(90deg, rgba($black, .25), rgba($black, .001));
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
.carousel-control-next {
|
|
118
|
+
right: 0;
|
|
119
|
+
@if $enable-gradients {
|
|
120
|
+
background: linear-gradient(270deg, rgba($black, .25), rgba($black, .001));
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// Icons for within
|
|
125
|
+
.carousel-control-prev-icon,
|
|
126
|
+
.carousel-control-next-icon {
|
|
127
|
+
display: inline-block;
|
|
128
|
+
width: $carousel-control-icon-width;
|
|
129
|
+
height: $carousel-control-icon-width;
|
|
130
|
+
background: no-repeat 50% / 100% 100%;
|
|
131
|
+
}
|
|
132
|
+
.carousel-control-prev-icon {
|
|
133
|
+
background-image: $carousel-control-prev-icon-bg;
|
|
134
|
+
}
|
|
135
|
+
.carousel-control-next-icon {
|
|
136
|
+
background-image: $carousel-control-next-icon-bg;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
// Optional indicator pips
|
|
141
|
+
//
|
|
142
|
+
// Add an ordered list with the following class and add a list item for each
|
|
143
|
+
// slide your carousel holds.
|
|
144
|
+
|
|
145
|
+
.carousel-indicators {
|
|
146
|
+
position: absolute;
|
|
147
|
+
right: 0;
|
|
148
|
+
bottom: 0;
|
|
149
|
+
left: 0;
|
|
150
|
+
z-index: 15;
|
|
151
|
+
display: flex;
|
|
152
|
+
justify-content: center;
|
|
153
|
+
padding-left: 0; // override <ol> default
|
|
154
|
+
// Use the .carousel-control's width as margin so we don't overlay those
|
|
155
|
+
margin-right: $carousel-control-width;
|
|
156
|
+
margin-left: $carousel-control-width;
|
|
157
|
+
list-style: none;
|
|
158
|
+
|
|
159
|
+
li {
|
|
160
|
+
box-sizing: content-box;
|
|
161
|
+
flex: 0 1 auto;
|
|
162
|
+
width: $carousel-indicator-width;
|
|
163
|
+
height: $carousel-indicator-height;
|
|
164
|
+
margin-right: $carousel-indicator-spacer;
|
|
165
|
+
margin-left: $carousel-indicator-spacer;
|
|
166
|
+
text-indent: -999px;
|
|
167
|
+
cursor: pointer;
|
|
168
|
+
background-color: $carousel-indicator-active-bg;
|
|
169
|
+
background-clip: padding-box;
|
|
170
|
+
// Use transparent borders to increase the hit area by 10px on top and bottom.
|
|
171
|
+
border-top: $carousel-indicator-hit-area-height solid transparent;
|
|
172
|
+
border-bottom: $carousel-indicator-hit-area-height solid transparent;
|
|
173
|
+
opacity: .5;
|
|
174
|
+
@include transition($carousel-indicator-transition);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.active {
|
|
178
|
+
opacity: 1;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
// Optional captions
|
|
184
|
+
//
|
|
185
|
+
//
|
|
186
|
+
|
|
187
|
+
.carousel-caption {
|
|
188
|
+
position: absolute;
|
|
189
|
+
right: (100% - $carousel-caption-width) / 2;
|
|
190
|
+
bottom: 20px;
|
|
191
|
+
left: (100% - $carousel-caption-width) / 2;
|
|
192
|
+
z-index: 10;
|
|
193
|
+
padding-top: 20px;
|
|
194
|
+
padding-bottom: 20px;
|
|
195
|
+
color: $carousel-caption-color;
|
|
196
|
+
text-align: center;
|
|
197
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
.close {
|
|
2
|
+
float: right;
|
|
3
|
+
@include font-size($close-font-size);
|
|
4
|
+
font-weight: $close-font-weight;
|
|
5
|
+
line-height: 1;
|
|
6
|
+
color: $close-color;
|
|
7
|
+
text-shadow: $close-text-shadow;
|
|
8
|
+
opacity: .5;
|
|
9
|
+
|
|
10
|
+
// Override <a>'s hover style
|
|
11
|
+
@include hover {
|
|
12
|
+
color: $close-color;
|
|
13
|
+
text-decoration: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&:not(:disabled):not(.disabled) {
|
|
17
|
+
@include hover-focus {
|
|
18
|
+
opacity: .75;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// Additional properties for button version
|
|
24
|
+
// iOS requires the button element instead of an anchor tag.
|
|
25
|
+
// If you want the anchor version, it requires `href="#"`.
|
|
26
|
+
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
|
|
27
|
+
|
|
28
|
+
// stylelint-disable-next-line selector-no-qualifying-type
|
|
29
|
+
button.close {
|
|
30
|
+
padding: 0;
|
|
31
|
+
background-color: transparent;
|
|
32
|
+
border: 0;
|
|
33
|
+
appearance: none;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// Future-proof disabling of clicks on `<a>` elements
|
|
37
|
+
|
|
38
|
+
// stylelint-disable-next-line selector-no-qualifying-type
|
|
39
|
+
a.close.disabled {
|
|
40
|
+
pointer-events: none;
|
|
41
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
// Inline code
|
|
2
|
+
code {
|
|
3
|
+
@include font-size($code-font-size);
|
|
4
|
+
color: $code-color;
|
|
5
|
+
word-break: break-word;
|
|
6
|
+
|
|
7
|
+
// Streamline the style when inside anchors to avoid broken underline and more
|
|
8
|
+
a > & {
|
|
9
|
+
color: inherit;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// User input typically entered via keyboard
|
|
14
|
+
kbd {
|
|
15
|
+
padding: $kbd-padding-y $kbd-padding-x;
|
|
16
|
+
@include font-size($kbd-font-size);
|
|
17
|
+
color: $kbd-color;
|
|
18
|
+
background-color: $kbd-bg;
|
|
19
|
+
@include border-radius($border-radius-sm);
|
|
20
|
+
@include box-shadow($kbd-box-shadow);
|
|
21
|
+
|
|
22
|
+
kbd {
|
|
23
|
+
padding: 0;
|
|
24
|
+
@include font-size(100%);
|
|
25
|
+
font-weight: $nested-kbd-font-weight;
|
|
26
|
+
@include box-shadow(none);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// Blocks of code
|
|
31
|
+
pre {
|
|
32
|
+
display: block;
|
|
33
|
+
@include font-size($code-font-size);
|
|
34
|
+
color: $pre-color;
|
|
35
|
+
|
|
36
|
+
// Account for some code outputs that place code tags in pre tags
|
|
37
|
+
code {
|
|
38
|
+
@include font-size(inherit);
|
|
39
|
+
color: inherit;
|
|
40
|
+
word-break: normal;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// Enable scrollable blocks of code
|
|
45
|
+
.pre-scrollable {
|
|
46
|
+
max-height: $pre-scrollable-max-height;
|
|
47
|
+
overflow-y: scroll;
|
|
48
|
+
}
|