jekyll-theme-mrwooo-solid-state 0.1.92 → 0.2.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 +4 -4
- data/README.md +1 -0
- data/_includes/head.html +3 -2
- data/_sass/base/_page.scss +59 -0
- data/_sass/base/_reset.scss +76 -0
- data/_sass/base/_typography.scss +219 -0
- data/_sass/components/_actions.scss +101 -0
- data/_sass/components/_box.scss +26 -0
- data/_sass/components/_button.scss +89 -0
- data/_sass/components/_contact.scss +43 -0
- data/_sass/components/_features.scss +71 -0
- data/_sass/components/_form.scss +235 -0
- data/_sass/components/_icon.scss +17 -0
- data/_sass/components/_icons.scss +28 -0
- data/_sass/components/_image.scss +60 -0
- data/_sass/components/_list.scss +56 -0
- data/_sass/components/_pagination.scss +75 -0
- data/_sass/components/_row.scss +35 -0
- data/_sass/components/_section.scss +13 -0
- data/_sass/components/_table.scss +81 -0
- data/_sass/fonts/FontAwesome.otf +0 -0
- data/_sass/fonts/fontawesome-webfont.eot +0 -0
- data/_sass/fonts/fontawesome-webfont.svg +2671 -0
- data/_sass/fonts/fontawesome-webfont.ttf +0 -0
- data/_sass/fonts/fontawesome-webfont.woff +0 -0
- data/_sass/fonts/fontawesome-webfont.woff2 +0 -0
- data/_sass/layout/_banner.scss +140 -0
- data/_sass/layout/_footer.scss +143 -0
- data/_sass/layout/_header.scss +140 -0
- data/_sass/layout/_menu.scss +127 -0
- data/_sass/layout/_wrapper.scss +303 -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 +54 -0
- data/_sass/libs/_vendor.scss +376 -0
- data/_sass/main.scss +57 -0
- data/_sass/noscript.scss +38 -0
- data/assets/sass/.keep +0 -0
- data/assets/sass/base/_page.scss +59 -0
- data/assets/sass/base/_reset.scss +76 -0
- data/assets/sass/base/_typography.scss +219 -0
- data/assets/sass/components/_actions.scss +101 -0
- data/assets/sass/components/_box.scss +26 -0
- data/assets/sass/components/_button.scss +89 -0
- data/assets/sass/components/_contact.scss +43 -0
- data/assets/sass/components/_features.scss +71 -0
- data/assets/sass/components/_form.scss +235 -0
- data/assets/sass/components/_icon.scss +17 -0
- data/assets/sass/components/_icons.scss +28 -0
- data/assets/sass/components/_image.scss +60 -0
- data/assets/sass/components/_list.scss +56 -0
- data/assets/sass/components/_pagination.scss +75 -0
- data/assets/sass/components/_row.scss +35 -0
- data/assets/sass/components/_section.scss +13 -0
- data/assets/sass/components/_table.scss +81 -0
- data/assets/{css → sass}/images/close.svg +0 -0
- data/assets/sass/layout/_banner.scss +140 -0
- data/assets/sass/layout/_footer.scss +143 -0
- data/assets/sass/layout/_header.scss +140 -0
- data/assets/sass/layout/_menu.scss +127 -0
- data/assets/sass/layout/_wrapper.scss +303 -0
- data/assets/sass/libs/_breakpoints.scss +223 -0
- data/assets/sass/libs/_functions.scss +90 -0
- data/assets/sass/libs/_html-grid.scss +149 -0
- data/assets/sass/libs/_mixins.scss +63 -0
- data/assets/sass/libs/_vars.scss +54 -0
- data/assets/sass/libs/_vendor.scss +376 -0
- data/assets/sass/main.scss +58 -0
- data/assets/sass/noscript.scss +38 -0
- metadata +70 -7
- data/_sass/main.sass +0 -4110
- data/assets/css/font-awesome.min.css +0 -4
- data/assets/css/main.css +0 -4110
- data/assets/css/noscript.css +0 -39
data/_sass/main.scss
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
---
|
|
2
|
+
---
|
|
3
|
+
@import 'libs/vars';
|
|
4
|
+
@import 'libs/functions';
|
|
5
|
+
@import 'libs/mixins';
|
|
6
|
+
@import 'libs/vendor';
|
|
7
|
+
@import 'libs/breakpoints';
|
|
8
|
+
@import 'libs/html-grid';
|
|
9
|
+
@import url('https://fonts.googleapis.com/css?family=Raleway:200,700|Source+Sans+Pro:300,600,300italic,600italic');
|
|
10
|
+
|
|
11
|
+
/*
|
|
12
|
+
Solid State by HTML5 UP
|
|
13
|
+
html5up.net | @ajlkn
|
|
14
|
+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
// Breakpoints.
|
|
18
|
+
|
|
19
|
+
@include breakpoints((
|
|
20
|
+
xlarge: (1281px, 1680px ),
|
|
21
|
+
large: (981px, 1280px ),
|
|
22
|
+
medium: (737px, 980px ),
|
|
23
|
+
small: (481px, 736px ),
|
|
24
|
+
xsmall: (361px, 480px ),
|
|
25
|
+
xxsmall: (null, 360px )
|
|
26
|
+
));
|
|
27
|
+
|
|
28
|
+
// Base.
|
|
29
|
+
|
|
30
|
+
@import 'base/reset';
|
|
31
|
+
@import 'base/page';
|
|
32
|
+
@import 'base/typography';
|
|
33
|
+
|
|
34
|
+
// Component.
|
|
35
|
+
|
|
36
|
+
@import 'components/row';
|
|
37
|
+
@import 'components/section';
|
|
38
|
+
@import 'components/form';
|
|
39
|
+
@import 'components/box';
|
|
40
|
+
@import 'components/icon';
|
|
41
|
+
@import 'components/image';
|
|
42
|
+
@import 'components/list';
|
|
43
|
+
@import 'components/actions';
|
|
44
|
+
@import 'components/icons';
|
|
45
|
+
@import 'components/contact';
|
|
46
|
+
@import 'components/pagination';
|
|
47
|
+
@import 'components/table';
|
|
48
|
+
@import 'components/button';
|
|
49
|
+
@import 'components/features';
|
|
50
|
+
|
|
51
|
+
// Layout.
|
|
52
|
+
|
|
53
|
+
@import 'layout/header';
|
|
54
|
+
@import 'layout/menu';
|
|
55
|
+
@import 'layout/banner';
|
|
56
|
+
@import 'layout/wrapper';
|
|
57
|
+
@import 'layout/footer';
|
data/_sass/noscript.scss
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
---
|
|
2
|
+
---
|
|
3
|
+
|
|
4
|
+
@import 'libs/vars';
|
|
5
|
+
@import 'libs/functions';
|
|
6
|
+
@import 'libs/mixins';
|
|
7
|
+
@import 'libs/vendor';
|
|
8
|
+
@import 'libs/breakpoints';
|
|
9
|
+
@import 'libs/html-grid';
|
|
10
|
+
|
|
11
|
+
/*
|
|
12
|
+
Solid State by HTML5 UP
|
|
13
|
+
html5up.net | @ajlkn
|
|
14
|
+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
/* Banner */
|
|
18
|
+
|
|
19
|
+
#banner {
|
|
20
|
+
body.is-preload & {
|
|
21
|
+
.logo {
|
|
22
|
+
@include vendor('transform', 'none');
|
|
23
|
+
opacity: 1;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
h2 {
|
|
27
|
+
opacity: 1;
|
|
28
|
+
@include vendor('transform', 'none');
|
|
29
|
+
@include vendor('filter', 'none');
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
p {
|
|
33
|
+
opacity: 01;
|
|
34
|
+
@include vendor('transform', 'none');
|
|
35
|
+
@include vendor('filter', 'none');
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
data/assets/sass/.keep
ADDED
|
File without changes
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
///
|
|
2
|
+
/// Solid State 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
|
+
|
|
39
|
+
background-image: linear-gradient(to top, transparentize(_palette(bg), 0.2), transparentize(_palette(bg), 0.2)),
|
|
40
|
+
url('../../images/bg.jpg');
|
|
41
|
+
|
|
42
|
+
background-size: auto,
|
|
43
|
+
cover;
|
|
44
|
+
|
|
45
|
+
background-attachment: fixed,
|
|
46
|
+
fixed;
|
|
47
|
+
|
|
48
|
+
background-position: center,
|
|
49
|
+
center;
|
|
50
|
+
|
|
51
|
+
// Stops initial animations until page loads.
|
|
52
|
+
&.is-preload {
|
|
53
|
+
*, *:before, *:after {
|
|
54
|
+
@include vendor('animation', 'none !important');
|
|
55
|
+
@include vendor('transition', 'none !important');
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
///
|
|
2
|
+
/// Solid State 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,219 @@
|
|
|
1
|
+
///
|
|
2
|
+
/// Solid State 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, input, select, textarea {
|
|
10
|
+
color: _palette(fg);
|
|
11
|
+
font-family: _font(family);
|
|
12
|
+
font-size: 16.5pt;
|
|
13
|
+
font-weight: _font(weight);
|
|
14
|
+
line-height: 1.65;
|
|
15
|
+
|
|
16
|
+
@include breakpoint('<=xlarge') {
|
|
17
|
+
font-size: 13pt;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@include breakpoint('<=large') {
|
|
21
|
+
font-size: 12pt;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@include breakpoint('<=medium') {
|
|
25
|
+
font-size: 12pt;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@include breakpoint('<=small') {
|
|
29
|
+
font-size: 12pt;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@include breakpoint('<=xsmall') {
|
|
33
|
+
font-size: 12pt;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
a {
|
|
38
|
+
@include vendor('transition', 'color #{_duration(transition)} ease-in-out, border-bottom-color #{_duration(transition)} ease-in-out');
|
|
39
|
+
border-bottom: dotted 1px _palette(fg-light);
|
|
40
|
+
color: _palette(fg-bold);
|
|
41
|
+
text-decoration: none;
|
|
42
|
+
|
|
43
|
+
&:hover {
|
|
44
|
+
border-bottom-color: transparent;
|
|
45
|
+
color: _palette(fg-bold) !important;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&.special:not(.button) {
|
|
49
|
+
@include icon;
|
|
50
|
+
border-bottom: 0;
|
|
51
|
+
display: block;
|
|
52
|
+
font-family: _font(family-heading);
|
|
53
|
+
font-size: 0.8em;
|
|
54
|
+
font-weight: _font(weight-heading-bold);
|
|
55
|
+
letter-spacing: _font(kern-heading);
|
|
56
|
+
margin: 0 0 _size(element-margin) 0;
|
|
57
|
+
text-transform: uppercase;
|
|
58
|
+
|
|
59
|
+
&:before {
|
|
60
|
+
@include vendor('transition', 'background-color #{_duration(transition)} ease-in-out');
|
|
61
|
+
border-radius: 100%;
|
|
62
|
+
border: solid 2px _palette(border);
|
|
63
|
+
content: '\f105';
|
|
64
|
+
display: inline-block;
|
|
65
|
+
font-size: 1.25em;
|
|
66
|
+
height: 2em;
|
|
67
|
+
line-height: 1.65em;
|
|
68
|
+
margin-right: 0.85em;
|
|
69
|
+
text-align: center;
|
|
70
|
+
text-indent: 0.15em;
|
|
71
|
+
vertical-align: middle;
|
|
72
|
+
width: 2em;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&:hover {
|
|
76
|
+
&:before {
|
|
77
|
+
background-color: _palette(border-bg);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
&:active {
|
|
82
|
+
&:before {
|
|
83
|
+
background-color: _palette(border2-bg);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
strong, b {
|
|
90
|
+
color: _palette(fg-bold);
|
|
91
|
+
font-weight: _font(weight-bold);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
em, i {
|
|
95
|
+
font-style: italic;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
p {
|
|
99
|
+
margin: 0 0 _size(element-margin) 0;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
h1, h2, h3, h4, h5, h6 {
|
|
103
|
+
color: _palette(fg-bold);
|
|
104
|
+
font-family: _font(family-heading);
|
|
105
|
+
font-weight: _font(weight-heading-bold);
|
|
106
|
+
letter-spacing: _font(kern-heading);
|
|
107
|
+
margin: 0 0 (_size(element-margin) * 0.5) 0;
|
|
108
|
+
text-transform: uppercase;
|
|
109
|
+
|
|
110
|
+
a {
|
|
111
|
+
color: inherit;
|
|
112
|
+
text-decoration: none;
|
|
113
|
+
border-bottom: 0;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
span {
|
|
117
|
+
font-weight: _font(weight-heading);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
&.major {
|
|
121
|
+
padding-bottom: 1em;
|
|
122
|
+
border-bottom: solid 2px _palette(border);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
h2 {
|
|
127
|
+
font-size: 1.2em;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
h3 {
|
|
131
|
+
font-size: 0.9em;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
h4 {
|
|
135
|
+
font-size: 0.7em;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
h5 {
|
|
139
|
+
font-size: 0.7em;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
h6 {
|
|
143
|
+
font-size: 0.7em;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
@include breakpoint('<=small') {
|
|
147
|
+
h2 {
|
|
148
|
+
font-size: 1em;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
h3 {
|
|
152
|
+
font-size: 0.8em
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
sub {
|
|
157
|
+
font-size: 0.8em;
|
|
158
|
+
position: relative;
|
|
159
|
+
top: 0.5em;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
sup {
|
|
163
|
+
font-size: 0.8em;
|
|
164
|
+
position: relative;
|
|
165
|
+
top: -0.5em;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
blockquote {
|
|
169
|
+
border-left: solid 4px _palette(border);
|
|
170
|
+
font-style: italic;
|
|
171
|
+
margin: 0 0 _size(element-margin) 0;
|
|
172
|
+
padding: (_size(element-margin) / 4) 0 (_size(element-margin) / 4) _size(element-margin);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
code {
|
|
176
|
+
background: _palette(border-bg);
|
|
177
|
+
border-radius: _size(border-radius);
|
|
178
|
+
border: solid 2px _palette(border);
|
|
179
|
+
font-family: _font(family-fixed);
|
|
180
|
+
font-size: 0.9em;
|
|
181
|
+
margin: 0 0.25em;
|
|
182
|
+
padding: 0.25em 0.65em;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
pre {
|
|
186
|
+
-webkit-overflow-scrolling: touch;
|
|
187
|
+
font-family: _font(family-fixed);
|
|
188
|
+
font-size: 0.9em;
|
|
189
|
+
margin: 0 0 _size(element-margin) 0;
|
|
190
|
+
|
|
191
|
+
code {
|
|
192
|
+
display: block;
|
|
193
|
+
line-height: 1.75em;
|
|
194
|
+
padding: 1em 1.5em;
|
|
195
|
+
overflow-x: auto;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
hr {
|
|
200
|
+
border: 0;
|
|
201
|
+
border-bottom: solid 2px _palette(border);
|
|
202
|
+
margin: (_size(element-margin) * 1.25) 0;
|
|
203
|
+
|
|
204
|
+
&.major {
|
|
205
|
+
margin: (_size(element-margin) * 2) 0;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.align-left {
|
|
210
|
+
text-align: left;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.align-center {
|
|
214
|
+
text-align: center;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.align-right {
|
|
218
|
+
text-align: right;
|
|
219
|
+
}
|