jekyll-theme-stellar 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 +63 -0
- data/README.md +132 -0
- data/_home_sections/1_introduction.md +21 -0
- data/_home_sections/2_first.md +32 -0
- data/_home_sections/3_second.md +40 -0
- data/_home_sections/4_get_started.md +18 -0
- data/_includes/footer.html +54 -0
- data/_includes/head.html +7 -0
- data/_includes/header.html +9 -0
- data/_includes/navigation.html +8 -0
- data/_includes/scripts.html +8 -0
- data/_layouts/default.html +34 -0
- data/_layouts/page.html +32 -0
- data/_layouts/post.html +5 -0
- data/_sass/base/_page.scss +51 -0
- data/_sass/base/_reset.scss +76 -0
- data/_sass/base/_typography.scss +216 -0
- data/_sass/components/_actions.scss +101 -0
- data/_sass/components/_box.scss +34 -0
- data/_sass/components/_button.scss +109 -0
- data/_sass/components/_features.scss +60 -0
- data/_sass/components/_form.scss +220 -0
- data/_sass/components/_icon.scss +130 -0
- data/_sass/components/_icons.scss +22 -0
- data/_sass/components/_image.scss +60 -0
- data/_sass/components/_list.scss +94 -0
- data/_sass/components/_row.scss +31 -0
- data/_sass/components/_section.scss +104 -0
- data/_sass/components/_spotlight.scss +93 -0
- data/_sass/components/_statistics.scss +108 -0
- data/_sass/components/_table.scss +114 -0
- data/_sass/layout/_footer.scss +60 -0
- data/_sass/layout/_header.scss +116 -0
- data/_sass/layout/_main.scss +99 -0
- data/_sass/layout/_nav.scss +96 -0
- data/_sass/layout/_wrapper.scss +21 -0
- data/_sass/libs/_breakpoints.scss +223 -0
- data/_sass/libs/_functions.scss +90 -0
- data/_sass/libs/_html-grid.scss +149 -0
- data/_sass/libs/_mixins.scss +63 -0
- data/_sass/libs/_vars.scss +60 -0
- data/_sass/libs/_vendor.scss +376 -0
- data/_sass/main.scss +70 -0
- data/_sass/noscript.scss +28 -0
- data/assets/css/font-awesome.min.css +4 -0
- data/assets/css/images/overlay.png +0 -0
- data/assets/css/main.css +3764 -0
- data/assets/css/noscript.css +18 -0
- data/assets/fonts/FontAwesome.otf +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +2671 -0
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/images/logo.svg +16 -0
- data/assets/images/pic01.jpg +0 -0
- data/assets/images/pic02.jpg +0 -0
- data/assets/images/pic03.jpg +0 -0
- data/assets/images/pic04.jpg +0 -0
- data/assets/images/pic05.jpg +0 -0
- data/assets/images/pic06.jpg +0 -0
- data/assets/images/screenshot.jpg +0 -0
- data/assets/js/breakpoints.min.js +2 -0
- data/assets/js/browser.min.js +2 -0
- data/assets/js/jquery.min.js +2 -0
- data/assets/js/jquery.scrollex.min.js +2 -0
- data/assets/js/jquery.scrolly.min.js +2 -0
- data/assets/js/main.js +123 -0
- data/assets/js/util.js +587 -0
- metadata +155 -0
data/_layouts/page.html
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<!--
|
3
|
+
Stellar by HTML5 UP
|
4
|
+
html5up.net | @ajlkn
|
5
|
+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
6
|
+
-->
|
7
|
+
<html>
|
8
|
+
|
9
|
+
{% include head.html %}
|
10
|
+
|
11
|
+
<body class="is-preload">
|
12
|
+
|
13
|
+
<!-- Wrapper -->
|
14
|
+
<div id="wrapper">
|
15
|
+
|
16
|
+
{% include header.html %}
|
17
|
+
|
18
|
+
<!-- Main -->
|
19
|
+
<div id="main">
|
20
|
+
|
21
|
+
{{ content }}
|
22
|
+
|
23
|
+
</div>
|
24
|
+
|
25
|
+
{% include footer.html %}
|
26
|
+
|
27
|
+
</div>
|
28
|
+
|
29
|
+
{% include scripts.html %}
|
30
|
+
|
31
|
+
</body>
|
32
|
+
</html>
|
data/_layouts/post.html
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
///
|
2
|
+
/// Stellar by HTML5 UP
|
3
|
+
/// html5up.net | @ajlkn
|
4
|
+
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
5
|
+
///
|
6
|
+
|
7
|
+
/* Basic */
|
8
|
+
|
9
|
+
// MSIE: Required for IEMobile.
|
10
|
+
@-ms-viewport {
|
11
|
+
width: device-width;
|
12
|
+
}
|
13
|
+
|
14
|
+
// MSIE: Prevents scrollbar from overlapping content.
|
15
|
+
body {
|
16
|
+
-ms-overflow-style: scrollbar;
|
17
|
+
}
|
18
|
+
|
19
|
+
// Ensures page width is always >=320px.
|
20
|
+
@include breakpoint('<=xsmall') {
|
21
|
+
html, body {
|
22
|
+
min-width: 320px;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
// Set box model to border-box.
|
27
|
+
// Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
|
28
|
+
html {
|
29
|
+
box-sizing: border-box;
|
30
|
+
}
|
31
|
+
|
32
|
+
*, *:before, *:after {
|
33
|
+
box-sizing: inherit;
|
34
|
+
}
|
35
|
+
|
36
|
+
body {
|
37
|
+
background-color: _palette(bg);
|
38
|
+
@include vendor('background-image', (
|
39
|
+
'url("images/overlay.png")',
|
40
|
+
'linear-gradient(45deg, #{_palette(bg1)} 15%, #{_palette(bg2) 85%})',
|
41
|
+
));
|
42
|
+
|
43
|
+
// Stops initial animations until page loads.
|
44
|
+
&.is-preload {
|
45
|
+
*, *:before, *:after {
|
46
|
+
@include vendor('animation', 'none !important');
|
47
|
+
@include vendor('transition', 'none !important');
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
}
|
@@ -0,0 +1,76 @@
|
|
1
|
+
///
|
2
|
+
/// Stellar by HTML5 UP
|
3
|
+
/// html5up.net | @ajlkn
|
4
|
+
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
5
|
+
///
|
6
|
+
|
7
|
+
// Reset.
|
8
|
+
// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
|
9
|
+
|
10
|
+
html, body, div, span, applet, object,
|
11
|
+
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
|
12
|
+
pre, a, abbr, acronym, address, big, cite,
|
13
|
+
code, del, dfn, em, img, ins, kbd, q, s, samp,
|
14
|
+
small, strike, strong, sub, sup, tt, var, b,
|
15
|
+
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
|
16
|
+
form, label, legend, table, caption, tbody,
|
17
|
+
tfoot, thead, tr, th, td, article, aside,
|
18
|
+
canvas, details, embed, figure, figcaption,
|
19
|
+
footer, header, hgroup, menu, nav, output, ruby,
|
20
|
+
section, summary, time, mark, audio, video {
|
21
|
+
margin: 0;
|
22
|
+
padding: 0;
|
23
|
+
border: 0;
|
24
|
+
font-size: 100%;
|
25
|
+
font: inherit;
|
26
|
+
vertical-align: baseline;
|
27
|
+
}
|
28
|
+
|
29
|
+
article, aside, details, figcaption, figure,
|
30
|
+
footer, header, hgroup, menu, nav, section {
|
31
|
+
display: block;
|
32
|
+
}
|
33
|
+
|
34
|
+
body {
|
35
|
+
line-height: 1;
|
36
|
+
}
|
37
|
+
|
38
|
+
ol, ul {
|
39
|
+
list-style:none;
|
40
|
+
}
|
41
|
+
|
42
|
+
blockquote, q {
|
43
|
+
quotes: none;
|
44
|
+
|
45
|
+
&:before,
|
46
|
+
&:after {
|
47
|
+
content: '';
|
48
|
+
content: none;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
table {
|
53
|
+
border-collapse: collapse;
|
54
|
+
border-spacing: 0;
|
55
|
+
}
|
56
|
+
|
57
|
+
body {
|
58
|
+
-webkit-text-size-adjust: none;
|
59
|
+
}
|
60
|
+
|
61
|
+
mark {
|
62
|
+
background-color: transparent;
|
63
|
+
color: inherit;
|
64
|
+
}
|
65
|
+
|
66
|
+
input::-moz-focus-inner {
|
67
|
+
border: 0;
|
68
|
+
padding: 0;
|
69
|
+
}
|
70
|
+
|
71
|
+
input, select, textarea {
|
72
|
+
-moz-appearance: none;
|
73
|
+
-webkit-appearance: none;
|
74
|
+
-ms-appearance: none;
|
75
|
+
appearance: none;
|
76
|
+
}
|
@@ -0,0 +1,216 @@
|
|
1
|
+
///
|
2
|
+
/// Stellar by HTML5 UP
|
3
|
+
/// html5up.net | @ajlkn
|
4
|
+
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
5
|
+
///
|
6
|
+
|
7
|
+
/* Type */
|
8
|
+
|
9
|
+
body {
|
10
|
+
background-color: _palette(bg);
|
11
|
+
color: _palette(fg);
|
12
|
+
}
|
13
|
+
|
14
|
+
body, input, select, textarea {
|
15
|
+
font-family: _font(family);
|
16
|
+
font-size: 17pt;
|
17
|
+
font-weight: _font(weight);
|
18
|
+
line-height: 1.65;
|
19
|
+
|
20
|
+
@include breakpoint('<=xlarge') {
|
21
|
+
font-size: 14pt;
|
22
|
+
}
|
23
|
+
|
24
|
+
@include breakpoint('<=large') {
|
25
|
+
font-size: 12pt;
|
26
|
+
}
|
27
|
+
|
28
|
+
@include breakpoint('<=xxsmall') {
|
29
|
+
font-size: 11pt;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
a {
|
34
|
+
@include vendor('transition', (
|
35
|
+
'color #{_duration(transition)} ease',
|
36
|
+
'border-bottom #{_duration(transition)} ease'
|
37
|
+
));
|
38
|
+
text-decoration: none;
|
39
|
+
border-bottom: dotted 1px;
|
40
|
+
color: inherit;
|
41
|
+
|
42
|
+
&:hover {
|
43
|
+
border-bottom-color: transparent;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
strong, b {
|
48
|
+
font-weight: _font(weight-bold);
|
49
|
+
}
|
50
|
+
|
51
|
+
em, i {
|
52
|
+
font-style: italic;
|
53
|
+
}
|
54
|
+
|
55
|
+
p {
|
56
|
+
margin: 0 0 _size(element-margin) 0;
|
57
|
+
|
58
|
+
&.content {
|
59
|
+
-moz-columns: 20em 2;
|
60
|
+
-webkit-columns: 20em 2;
|
61
|
+
-ms-columns: 20em 2;
|
62
|
+
columns: 20em 2;
|
63
|
+
-moz-column-gap: _size(element-margin);
|
64
|
+
-webkit-column-gap: _size(element-margin);
|
65
|
+
-ms-column-gap: _size(element-margin);
|
66
|
+
column-gap: _size(element-margin);
|
67
|
+
text-align: justify;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
h1, h2, h3, h4, h5, h6 {
|
72
|
+
font-weight: _font(weight);
|
73
|
+
line-height: 1.5;
|
74
|
+
margin: 0 0 (_size(element-margin) * 0.35) 0;
|
75
|
+
letter-spacing: _font(letter-spacing);
|
76
|
+
|
77
|
+
a {
|
78
|
+
color: inherit;
|
79
|
+
text-decoration: none;
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
h1 {
|
84
|
+
font-size: 2.5em;
|
85
|
+
line-height: 1.2;
|
86
|
+
}
|
87
|
+
|
88
|
+
h2 {
|
89
|
+
font-size: 1.5em;
|
90
|
+
}
|
91
|
+
|
92
|
+
h3 {
|
93
|
+
font-size: 1.25em;
|
94
|
+
}
|
95
|
+
|
96
|
+
h4 {
|
97
|
+
font-size: 1.1em;
|
98
|
+
}
|
99
|
+
|
100
|
+
h5 {
|
101
|
+
font-size: 0.9em;
|
102
|
+
}
|
103
|
+
|
104
|
+
h6 {
|
105
|
+
font-size: 0.7em;
|
106
|
+
}
|
107
|
+
|
108
|
+
@include breakpoint('<=small') {
|
109
|
+
h1 {
|
110
|
+
font-size: 2em;
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
sub {
|
115
|
+
font-size: 0.8em;
|
116
|
+
position: relative;
|
117
|
+
top: 0.5em;
|
118
|
+
}
|
119
|
+
|
120
|
+
sup {
|
121
|
+
font-size: 0.8em;
|
122
|
+
position: relative;
|
123
|
+
top: -0.5em;
|
124
|
+
}
|
125
|
+
|
126
|
+
blockquote {
|
127
|
+
border-left: solid 4px;
|
128
|
+
font-style: italic;
|
129
|
+
margin: 0 0 _size(element-margin) 0;
|
130
|
+
padding: (_size(element-margin) / 4) 0 (_size(element-margin) / 4) _size(element-margin);
|
131
|
+
}
|
132
|
+
|
133
|
+
code {
|
134
|
+
border-radius: _size(border-radius);
|
135
|
+
border: solid 1px;
|
136
|
+
font-family: _font(family-fixed);
|
137
|
+
font-size: 0.9em;
|
138
|
+
margin: 0 0.25em;
|
139
|
+
padding: 0.25em 0.65em;
|
140
|
+
}
|
141
|
+
|
142
|
+
pre {
|
143
|
+
-webkit-overflow-scrolling: touch;
|
144
|
+
font-family: _font(family-fixed);
|
145
|
+
font-size: 0.9em;
|
146
|
+
margin: 0 0 _size(element-margin) 0;
|
147
|
+
|
148
|
+
code {
|
149
|
+
display: block;
|
150
|
+
line-height: 1.75;
|
151
|
+
padding: 1em 1.5em;
|
152
|
+
overflow-x: auto;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
|
156
|
+
hr {
|
157
|
+
border: 0;
|
158
|
+
border-bottom: solid 1px;
|
159
|
+
margin: _size(element-margin) 0;
|
160
|
+
|
161
|
+
&.major {
|
162
|
+
margin: (_size(element-margin) * 1.5) 0;
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
166
|
+
.align-left {
|
167
|
+
text-align: left;
|
168
|
+
}
|
169
|
+
|
170
|
+
.align-center {
|
171
|
+
text-align: center;
|
172
|
+
}
|
173
|
+
|
174
|
+
.align-right {
|
175
|
+
text-align: right;
|
176
|
+
}
|
177
|
+
|
178
|
+
@mixin color-typography($p: null) {
|
179
|
+
@if $p != null {
|
180
|
+
background-color: _palette($p, bg);
|
181
|
+
color: _palette($p, fg);
|
182
|
+
}
|
183
|
+
|
184
|
+
input, select, textarea {
|
185
|
+
color: _palette($p, fg-bold);
|
186
|
+
}
|
187
|
+
|
188
|
+
a {
|
189
|
+
&:hover {
|
190
|
+
color: _palette($p, fg-bold);
|
191
|
+
}
|
192
|
+
}
|
193
|
+
|
194
|
+
strong, b {
|
195
|
+
color: _palette($p, fg-bold);
|
196
|
+
}
|
197
|
+
|
198
|
+
h1, h2, h3, h4, h5, h6 {
|
199
|
+
color: _palette($p, fg-bold);
|
200
|
+
}
|
201
|
+
|
202
|
+
blockquote {
|
203
|
+
border-left-color: _palette($p, border);
|
204
|
+
}
|
205
|
+
|
206
|
+
code {
|
207
|
+
background: _palette($p, border-bg);
|
208
|
+
border-color: _palette($p, border);
|
209
|
+
}
|
210
|
+
|
211
|
+
hr {
|
212
|
+
border-bottom-color: _palette($p, border);
|
213
|
+
}
|
214
|
+
}
|
215
|
+
|
216
|
+
@include color-typography;
|
@@ -0,0 +1,101 @@
|
|
1
|
+
///
|
2
|
+
/// Stellar by HTML5 UP
|
3
|
+
/// html5up.net | @ajlkn
|
4
|
+
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
5
|
+
///
|
6
|
+
|
7
|
+
/* Actions */
|
8
|
+
|
9
|
+
ul.actions {
|
10
|
+
@include vendor('display', 'flex');
|
11
|
+
cursor: default;
|
12
|
+
list-style: none;
|
13
|
+
margin-left: (_size(element-margin) * -0.5);
|
14
|
+
padding-left: 0;
|
15
|
+
|
16
|
+
li {
|
17
|
+
padding: 0 0 0 (_size(element-margin) * 0.5);
|
18
|
+
vertical-align: middle;
|
19
|
+
}
|
20
|
+
|
21
|
+
&.special {
|
22
|
+
@include vendor('justify-content', 'center');
|
23
|
+
width: 100%;
|
24
|
+
margin-left: 0;
|
25
|
+
|
26
|
+
li {
|
27
|
+
&:first-child {
|
28
|
+
padding-left: 0;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
&.stacked {
|
34
|
+
@include vendor('flex-direction', 'column');
|
35
|
+
margin-left: 0;
|
36
|
+
|
37
|
+
li {
|
38
|
+
padding: (_size(element-margin) * 0.65) 0 0 0;
|
39
|
+
|
40
|
+
&:first-child {
|
41
|
+
padding-top: 0;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
&.fit {
|
47
|
+
width: calc(100% + #{_size(element-margin) * 0.5});
|
48
|
+
|
49
|
+
li {
|
50
|
+
@include vendor('flex-grow', '1');
|
51
|
+
@include vendor('flex-shrink', '1');
|
52
|
+
width: 100%;
|
53
|
+
|
54
|
+
> * {
|
55
|
+
width: 100%;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
&.stacked {
|
60
|
+
width: 100%;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
@include breakpoint('<=xsmall') {
|
65
|
+
&:not(.fixed) {
|
66
|
+
@include vendor('flex-direction', 'column');
|
67
|
+
margin-left: 0;
|
68
|
+
width: 100% !important;
|
69
|
+
|
70
|
+
li {
|
71
|
+
@include vendor('flex-grow', '1');
|
72
|
+
@include vendor('flex-shrink', '1');
|
73
|
+
padding: (_size(element-margin) * 0.5) 0 0 0;
|
74
|
+
text-align: center;
|
75
|
+
width: 100%;
|
76
|
+
|
77
|
+
> * {
|
78
|
+
width: 100%;
|
79
|
+
}
|
80
|
+
|
81
|
+
&:first-child {
|
82
|
+
padding-top: 0;
|
83
|
+
}
|
84
|
+
|
85
|
+
input[type="submit"],
|
86
|
+
input[type="reset"],
|
87
|
+
input[type="button"],
|
88
|
+
button,
|
89
|
+
.button {
|
90
|
+
width: 100%;
|
91
|
+
|
92
|
+
&.icon {
|
93
|
+
&:before {
|
94
|
+
margin-left: -0.5rem;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
}
|
98
|
+
}
|
99
|
+
}
|
100
|
+
}
|
101
|
+
}
|