jekyll-theme-consulting 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +437 -0
- data/README.md +96 -0
- data/_includes/banner.html +10 -0
- data/_includes/bouncing.svg +53 -0
- data/_includes/footer.html +39 -0
- data/_includes/head.html +10 -0
- data/_includes/header.html +10 -0
- data/_includes/navigation.html +22 -0
- data/_includes/scripts.html +8 -0
- data/_layouts/default.html +22 -0
- data/_layouts/home.html +6 -0
- data/_layouts/page.html +4 -0
- data/_layouts/post.html +13 -0
- data/_sass/base/_reset.scss +70 -0
- data/_sass/base/_typography.scss +140 -0
- data/_sass/components/_actions.scss +18 -0
- data/_sass/components/_box.scss +247 -0
- data/_sass/components/_button.scss +65 -0
- data/_sass/components/_container.scss +14 -0
- data/_sass/components/_form.scss +88 -0
- data/_sass/components/_icons.scss +44 -0
- data/_sass/components/_image.scss +37 -0
- data/_sass/components/_list.scss +25 -0
- data/_sass/components/_menu.scss +21 -0
- data/_sass/components/_poptrox.scss +121 -0
- data/_sass/components/_row.scss +21 -0
- data/_sass/components/_sections.scss +18 -0
- data/_sass/components/_table.scss +35 -0
- data/_sass/layout/_banner.scss +44 -0
- data/_sass/layout/_breakpoints.scss +358 -0
- data/_sass/layout/_footer.scss +44 -0
- data/_sass/layout/_header.scss +85 -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 +34 -0
- data/_sass/libs/_vendor.scss +376 -0
- data/_sass/main.scss +51 -0
- data/_sass/noscript.scss +25 -0
- data/assets/css/font-awesome.min.css +4 -0
- data/assets/css/images/arrow.svg +17 -0
- data/assets/css/images/banner.svg +206 -0
- data/assets/css/images/circles.svg +30 -0
- data/assets/css/images/falling.svg +37 -0
- data/assets/css/images/loader.gif +0 -0
- data/assets/css/images/overlay.png +0 -0
- data/assets/css/images/poptrox-closer.svg +6 -0
- data/assets/css/images/poptrox-nav.svg +6 -0
- data/assets/css/noscript.css +19 -0
- data/assets/css/styles.scss +4 -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/bg-1.jpg +0 -0
- data/assets/images/bg-alt.jpg +0 -0
- data/assets/images/bg.jpg +0 -0
- data/assets/images/bouncing.svg +50 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/fulls/01.jpg +0 -0
- data/assets/images/fulls/02.jpg +0 -0
- data/assets/images/fulls/03.jpg +0 -0
- data/assets/images/fulls/04.jpg +0 -0
- data/assets/images/fulls/05.jpg +0 -0
- data/assets/images/fulls/06.jpg +0 -0
- data/assets/images/fulls/07.jpg +0 -0
- data/assets/images/fulls/08.jpg +0 -0
- data/assets/images/logo.svg +21 -0
- data/assets/images/pic01.jpg +0 -0
- data/assets/images/pic02.jpg +0 -0
- data/assets/images/screenshot.jpg +0 -0
- data/assets/images/thumbs/01.jpg +0 -0
- data/assets/images/thumbs/02.jpg +0 -0
- data/assets/images/thumbs/03.jpg +0 -0
- data/assets/images/thumbs/04.jpg +0 -0
- data/assets/images/thumbs/05.jpg +0 -0
- data/assets/images/thumbs/06.jpg +0 -0
- data/assets/images/thumbs/07.jpg +0 -0
- data/assets/images/thumbs/08.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.poptrox.min.js +2 -0
- data/assets/js/jquery.scrolly.min.js +2 -0
- data/assets/js/main.js +106 -0
- data/assets/js/util.js +587 -0
- metadata +175 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
<!-- Navbar -->
|
2
|
+
<nav id="nav">
|
3
|
+
<ul>
|
4
|
+
{% for item in site.data.navigation.menu %}
|
5
|
+
{% if item.menu[0] %}
|
6
|
+
<li class="submenu {% if item.url == page.url %} current {% endif %}">
|
7
|
+
<a href="{{ item.url | absolute_url }}">{{ item.title }}</a>
|
8
|
+
<ul>
|
9
|
+
{% for subitem in item.menu %}
|
10
|
+
<li {% if subitem.url == page.url %} class="current" {% endif %}>
|
11
|
+
<a href="{{ subitem.url | absolute_url }}">{{ subitem.title }}</a>
|
12
|
+
</li>
|
13
|
+
{% endfor %}
|
14
|
+
</ul>
|
15
|
+
{% else %}
|
16
|
+
<li {% if item.url == page.url %} class="current" {% endif %}>
|
17
|
+
<a href="{{ item.url | absolute_url }}">{{ item.title }}</a>
|
18
|
+
</li>
|
19
|
+
{% endif %}
|
20
|
+
{% endfor %}
|
21
|
+
</ul>
|
22
|
+
</nav>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<!-- Scripts -->
|
2
|
+
<script src="assets/js/jquery.min.js"></script>
|
3
|
+
<script src="assets/js/jquery.scrolly.min.js"></script>
|
4
|
+
<script src="assets/js/jquery.poptrox.min.js"></script>
|
5
|
+
<script src="assets/js/browser.min.js"></script>
|
6
|
+
<script src="assets/js/breakpoints.min.js"></script>
|
7
|
+
<script src="assets/js/util.js"></script>
|
8
|
+
<script src="assets/js/main.js"></script>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<!--
|
3
|
+
Drop by MOODULE
|
4
|
+
https://github.com/moodule
|
5
|
+
Free for personal and commercial use under the CCA 4.0 license
|
6
|
+
-->
|
7
|
+
<html>
|
8
|
+
|
9
|
+
{% include head.html %}
|
10
|
+
|
11
|
+
<body class="is-preload">
|
12
|
+
|
13
|
+
{% include header.html %}
|
14
|
+
|
15
|
+
{{ content }}
|
16
|
+
|
17
|
+
{% include footer.html %}
|
18
|
+
|
19
|
+
{% include scripts.html %}
|
20
|
+
|
21
|
+
</body>
|
22
|
+
</html>
|
data/_layouts/home.html
ADDED
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
<article class="container box style3">
|
5
|
+
<h1>{{ page.title }}</h1>
|
6
|
+
<p>{{ page.date | date_to_string }} - {{ page.author }}</p>
|
7
|
+
|
8
|
+
{{ content }}
|
9
|
+
|
10
|
+
<p>
|
11
|
+
- <a href="{{ 'about.html' | absolute_url }}">{{ site.author }}</a>
|
12
|
+
</p>
|
13
|
+
</article>
|
@@ -0,0 +1,70 @@
|
|
1
|
+
// Reset.
|
2
|
+
// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
|
3
|
+
|
4
|
+
html, body, div, span, applet, object,
|
5
|
+
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
|
6
|
+
pre, a, abbr, acronym, address, big, cite,
|
7
|
+
code, del, dfn, em, img, ins, kbd, q, s, samp,
|
8
|
+
small, strike, strong, sub, sup, tt, var, b,
|
9
|
+
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
|
10
|
+
form, label, legend, table, caption, tbody,
|
11
|
+
tfoot, thead, tr, th, td, article, aside,
|
12
|
+
canvas, details, embed, figure, figcaption,
|
13
|
+
footer, header, hgroup, menu, nav, output, ruby,
|
14
|
+
section, summary, time, mark, audio, video {
|
15
|
+
margin: 0;
|
16
|
+
padding: 0;
|
17
|
+
border: 0;
|
18
|
+
font-size: 100%;
|
19
|
+
font: inherit;
|
20
|
+
vertical-align: baseline;
|
21
|
+
}
|
22
|
+
|
23
|
+
article, aside, details, figcaption, figure,
|
24
|
+
footer, header, hgroup, menu, nav, section {
|
25
|
+
display: block;
|
26
|
+
}
|
27
|
+
|
28
|
+
body {
|
29
|
+
line-height: 1;
|
30
|
+
}
|
31
|
+
|
32
|
+
ol, ul {
|
33
|
+
list-style:none;
|
34
|
+
}
|
35
|
+
|
36
|
+
blockquote, q {
|
37
|
+
quotes: none;
|
38
|
+
|
39
|
+
&:before,
|
40
|
+
&:after {
|
41
|
+
content: '';
|
42
|
+
content: none;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
table {
|
47
|
+
border-collapse: collapse;
|
48
|
+
border-spacing: 0;
|
49
|
+
}
|
50
|
+
|
51
|
+
body {
|
52
|
+
-webkit-text-size-adjust: none;
|
53
|
+
}
|
54
|
+
|
55
|
+
mark {
|
56
|
+
background-color: transparent;
|
57
|
+
color: inherit;
|
58
|
+
}
|
59
|
+
|
60
|
+
input::-moz-focus-inner {
|
61
|
+
border: 0;
|
62
|
+
padding: 0;
|
63
|
+
}
|
64
|
+
|
65
|
+
input, select, textarea {
|
66
|
+
-moz-appearance: none;
|
67
|
+
-webkit-appearance: none;
|
68
|
+
-ms-appearance: none;
|
69
|
+
appearance: none;
|
70
|
+
}
|
@@ -0,0 +1,140 @@
|
|
1
|
+
/* Basic */
|
2
|
+
|
3
|
+
// Set box model to border-box.
|
4
|
+
// Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
|
5
|
+
html {
|
6
|
+
box-sizing: border-box;
|
7
|
+
}
|
8
|
+
|
9
|
+
*, *:before, *:after {
|
10
|
+
box-sizing: inherit;
|
11
|
+
}
|
12
|
+
|
13
|
+
body {
|
14
|
+
background-color: _palette(bg);
|
15
|
+
background-image: linear-gradient(rgba(25, 45, 60, 0.7), rgba(25, 45, 60, 0.7)), url('../images/bg-1.jpg');
|
16
|
+
background-repeat: no-repeat, no-repeat;
|
17
|
+
background-size: cover, cover;
|
18
|
+
background-position: center 0, center 0;
|
19
|
+
background-attachment: fixed, fixed;
|
20
|
+
font-family: 'Source Sans Pro', sans-serif;
|
21
|
+
font-size: 18pt;
|
22
|
+
line-height: 1.75em;
|
23
|
+
font-weight: 300;
|
24
|
+
letter-spacing: 1px;
|
25
|
+
color: _palette(fg);
|
26
|
+
text-shadow: 0 0 0.5px rgba(58, 57, 57, 0.25);
|
27
|
+
-webkit-text-stroke: 0.25px;
|
28
|
+
|
29
|
+
&.is-scroll {
|
30
|
+
background-attachment: scroll, scroll;
|
31
|
+
background-size: auto, 100% auto;
|
32
|
+
}
|
33
|
+
|
34
|
+
// Stops initial animations until page loads.
|
35
|
+
&.is-preload {
|
36
|
+
*, *:before, *:after {
|
37
|
+
@include vendor('animation', 'none !important');
|
38
|
+
@include vendor('transition', 'none !important');
|
39
|
+
}
|
40
|
+
}
|
41
|
+
|
42
|
+
}
|
43
|
+
|
44
|
+
input, textarea, select {
|
45
|
+
font-family: 'Source Sans Pro', sans-serif;
|
46
|
+
font-size: 18pt;
|
47
|
+
line-height: 1.75em;
|
48
|
+
font-weight: 300;
|
49
|
+
letter-spacing: 1px;
|
50
|
+
color: _palette(bg);
|
51
|
+
text-shadow: 0 0 0.5px rgba(58, 57, 57, 0.25);
|
52
|
+
-webkit-text-stroke: 0.25px;
|
53
|
+
}
|
54
|
+
|
55
|
+
h1, h2, h3, h4, h5, h6 {
|
56
|
+
font-weight: 400;
|
57
|
+
text-transform: uppercase;
|
58
|
+
line-height: 1.75em;
|
59
|
+
}
|
60
|
+
|
61
|
+
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
|
62
|
+
color: inherit;
|
63
|
+
text-decoration: none;
|
64
|
+
}
|
65
|
+
|
66
|
+
h2 {
|
67
|
+
font-size: 1.25em;
|
68
|
+
letter-spacing: 8px;
|
69
|
+
}
|
70
|
+
|
71
|
+
h3 {
|
72
|
+
font-size: 1em;
|
73
|
+
letter-spacing: 5px;
|
74
|
+
}
|
75
|
+
|
76
|
+
strong, b {
|
77
|
+
font-weight: 400;
|
78
|
+
}
|
79
|
+
|
80
|
+
em, i {
|
81
|
+
font-style: italic;
|
82
|
+
}
|
83
|
+
|
84
|
+
a {
|
85
|
+
@include vendor('transition', ('border-color 0.35s ease-in-out', 'color 0.35s ease-in-out'));
|
86
|
+
color: _palette(accent-light);
|
87
|
+
text-shadow: 0 0 0.5px _palette(accent);
|
88
|
+
text-decoration: none;
|
89
|
+
border-bottom: dotted 1px _palette(accent-light);
|
90
|
+
|
91
|
+
&:hover {
|
92
|
+
border-bottom-color: _palette(accent);
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
sub {
|
97
|
+
position: relative;
|
98
|
+
top: 0.5em;
|
99
|
+
font-size: 0.8em;
|
100
|
+
}
|
101
|
+
|
102
|
+
sup {
|
103
|
+
position: relative;
|
104
|
+
top: -0.5em;
|
105
|
+
font-size: 0.8em;
|
106
|
+
}
|
107
|
+
|
108
|
+
hr {
|
109
|
+
border: 0;
|
110
|
+
border-top: solid 1px _palette(border);
|
111
|
+
margin: 2em 0 2em 0;
|
112
|
+
}
|
113
|
+
|
114
|
+
blockquote {
|
115
|
+
border-left: solid 0.5em _palette(border);
|
116
|
+
padding: 1em 0 1em 2em;
|
117
|
+
font-style: italic;
|
118
|
+
}
|
119
|
+
|
120
|
+
p, ul, ol, dl, table {
|
121
|
+
margin-bottom: 1em;
|
122
|
+
}
|
123
|
+
|
124
|
+
header {
|
125
|
+
margin-bottom: 1em;
|
126
|
+
|
127
|
+
p {
|
128
|
+
display: block;
|
129
|
+
margin: 0.5em 0 0 0;
|
130
|
+
padding: 0 0 1.5em 0;
|
131
|
+
}
|
132
|
+
}
|
133
|
+
|
134
|
+
footer {
|
135
|
+
margin-top: 1em;
|
136
|
+
}
|
137
|
+
|
138
|
+
br.clear {
|
139
|
+
clear: both;
|
140
|
+
}
|
@@ -0,0 +1,247 @@
|
|
1
|
+
/* Box */
|
2
|
+
|
3
|
+
.box {
|
4
|
+
position: relative;
|
5
|
+
margin-top: 9em;
|
6
|
+
margin-bottom: 0;
|
7
|
+
margin-left: auto;
|
8
|
+
margin-right: 3em;
|
9
|
+
|
10
|
+
&:after {
|
11
|
+
content: '';
|
12
|
+
display: block;
|
13
|
+
position: absolute;
|
14
|
+
top: -9em;
|
15
|
+
height: 9em;
|
16
|
+
border-left: solid 1px _palette(accent);
|
17
|
+
}
|
18
|
+
|
19
|
+
&:before {
|
20
|
+
content: '';
|
21
|
+
display: block;
|
22
|
+
width: 90px;
|
23
|
+
height: 66px;
|
24
|
+
position: absolute;
|
25
|
+
top: -4.5em;
|
26
|
+
margin-left: -45px;
|
27
|
+
margin-top: -33px;
|
28
|
+
background: url('images/circles.svg') no-repeat;
|
29
|
+
}
|
30
|
+
|
31
|
+
:last-child {
|
32
|
+
margin-bottom: 0;
|
33
|
+
}
|
34
|
+
|
35
|
+
&.right {
|
36
|
+
&:before, &:after {
|
37
|
+
left: 3em;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
&.left {
|
42
|
+
&:before, &:after {
|
43
|
+
right: 3em;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
&.style1 {
|
48
|
+
background: _palette(bg);
|
49
|
+
padding: 3em;
|
50
|
+
|
51
|
+
.image {
|
52
|
+
display: block;
|
53
|
+
position: absolute;
|
54
|
+
top: 0;
|
55
|
+
width: 50%;
|
56
|
+
height: 100%;
|
57
|
+
background: _palette(bg);
|
58
|
+
overflow: hidden;
|
59
|
+
|
60
|
+
img {
|
61
|
+
position: absolute;
|
62
|
+
top: 0;
|
63
|
+
height: 100%;
|
64
|
+
width: auto;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
.inner {
|
69
|
+
> :last-child {
|
70
|
+
margin: 0;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
&.right {
|
75
|
+
.image {
|
76
|
+
left: 0;
|
77
|
+
|
78
|
+
img {
|
79
|
+
right: 0;
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
.inner {
|
84
|
+
margin-left: 50%;
|
85
|
+
padding-left: 3em;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
&.left {
|
90
|
+
.image {
|
91
|
+
right: 0;
|
92
|
+
|
93
|
+
img {
|
94
|
+
left: 0;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
.inner {
|
99
|
+
margin-right: 50%;
|
100
|
+
padding-right: 3em;
|
101
|
+
}
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
&.style2 {
|
106
|
+
text-align: center;
|
107
|
+
|
108
|
+
header {
|
109
|
+
display: inline-block;
|
110
|
+
background: _palette(bg);
|
111
|
+
padding: 2em 3em 2em 3em;
|
112
|
+
margin: 0;
|
113
|
+
|
114
|
+
p {
|
115
|
+
padding: 0;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
.inner {
|
120
|
+
position: relative;
|
121
|
+
padding: 40px 0 0px 0;
|
122
|
+
|
123
|
+
&:after {
|
124
|
+
content: '';
|
125
|
+
display: block;
|
126
|
+
position: absolute;
|
127
|
+
top: 0;
|
128
|
+
left: 50%;
|
129
|
+
height: 100%;
|
130
|
+
border-left: solid 1px _palette(border);
|
131
|
+
}
|
132
|
+
|
133
|
+
.row {
|
134
|
+
position: relative;
|
135
|
+
|
136
|
+
&:before {
|
137
|
+
content: '';
|
138
|
+
display: block;
|
139
|
+
position: absolute;
|
140
|
+
top: 50%;
|
141
|
+
left: 20px;
|
142
|
+
width: calc(100% - 40px);
|
143
|
+
border-bottom: solid 1px _palette(border);
|
144
|
+
}
|
145
|
+
}
|
146
|
+
|
147
|
+
.image {
|
148
|
+
position: relative;
|
149
|
+
z-index: 1;
|
150
|
+
padding: 20px;
|
151
|
+
}
|
152
|
+
}
|
153
|
+
}
|
154
|
+
|
155
|
+
&.style3 {
|
156
|
+
background: _palette(bg);
|
157
|
+
padding: 3em;
|
158
|
+
|
159
|
+
header {
|
160
|
+
text-align: center;
|
161
|
+
}
|
162
|
+
}
|
163
|
+
|
164
|
+
|
165
|
+
&.style4 {
|
166
|
+
background: _palette(bg);
|
167
|
+
padding: 0;
|
168
|
+
|
169
|
+
svg {
|
170
|
+
position: absolute;
|
171
|
+
z-index: 0;
|
172
|
+
}
|
173
|
+
|
174
|
+
h2 {
|
175
|
+
position: relative;
|
176
|
+
z-index: 10;
|
177
|
+
}
|
178
|
+
|
179
|
+
p {
|
180
|
+
position: relative;
|
181
|
+
z-index: 10;
|
182
|
+
}
|
183
|
+
|
184
|
+
.upper, .lower {
|
185
|
+
display: block;
|
186
|
+
position: relative;
|
187
|
+
width: 100%;
|
188
|
+
height: auto;
|
189
|
+
overflow: hidden;
|
190
|
+
padding: 0;
|
191
|
+
margin: 0;
|
192
|
+
}
|
193
|
+
|
194
|
+
.upper {
|
195
|
+
color: _palette(bg);
|
196
|
+
background-color: _palette(accent);
|
197
|
+
|
198
|
+
svg {
|
199
|
+
bottom: 0;
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
203
|
+
.lower{
|
204
|
+
color: _palette(accent);
|
205
|
+
background-color: _palette(bg);
|
206
|
+
|
207
|
+
svg {
|
208
|
+
top: 0;
|
209
|
+
}
|
210
|
+
}
|
211
|
+
|
212
|
+
&.right {
|
213
|
+
svg {
|
214
|
+
left: 0;
|
215
|
+
}
|
216
|
+
|
217
|
+
h2 {
|
218
|
+
left: 0;
|
219
|
+
margin-left: 2.4em;
|
220
|
+
padding-left: 0.5em;
|
221
|
+
border-left: solid 1px _palette(bg);
|
222
|
+
}
|
223
|
+
|
224
|
+
p {
|
225
|
+
right: 0;
|
226
|
+
margin-left: 12em;
|
227
|
+
}
|
228
|
+
}
|
229
|
+
|
230
|
+
&.left {
|
231
|
+
svg {
|
232
|
+
right: 0;
|
233
|
+
}
|
234
|
+
|
235
|
+
h2 {
|
236
|
+
right: 0;
|
237
|
+
margin-right: 2.4em;
|
238
|
+
padding-right: 0.5em;
|
239
|
+
border-right: solid 1px _palette(bg);
|
240
|
+
}
|
241
|
+
|
242
|
+
p {
|
243
|
+
left: 0;
|
244
|
+
}
|
245
|
+
}
|
246
|
+
}
|
247
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
/* Button */
|
2
|
+
|
3
|
+
input[type="button"],
|
4
|
+
input[type="submit"],
|
5
|
+
input[type="reset"],
|
6
|
+
button,
|
7
|
+
.button {
|
8
|
+
@include vendor('transition', ('background-color 0.35s ease-in-out', 'color 0.35s ease-in-out'));
|
9
|
+
-webkit-appearance: none;
|
10
|
+
position: relative;
|
11
|
+
display: inline-block;
|
12
|
+
background: _palette(bg);
|
13
|
+
color: _palette(fg);
|
14
|
+
cursor: pointer;
|
15
|
+
outline: 0;
|
16
|
+
padding: 1em 3em 1em 3em;
|
17
|
+
font-weight: 400;
|
18
|
+
text-align: center;
|
19
|
+
text-decoration: none;
|
20
|
+
text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25);
|
21
|
+
border: 0;
|
22
|
+
border-radius: 3em;
|
23
|
+
|
24
|
+
&:hover {
|
25
|
+
background: _palette(accent);
|
26
|
+
}
|
27
|
+
|
28
|
+
&.style2 {
|
29
|
+
color: _palette(accent-light);
|
30
|
+
background: _palette(bg);
|
31
|
+
box-shadow: inset 0 0 0 1px _palette(accent);
|
32
|
+
|
33
|
+
&:hover {
|
34
|
+
background: _palette(bg-light);
|
35
|
+
color: _palette(accent-light) !important;
|
36
|
+
text-shadow: 0 0 0.5px _palette(accent) !important;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
&.style3 {
|
41
|
+
background: none;
|
42
|
+
color: _palette(accent);
|
43
|
+
box-shadow: inset 0 0 0 1px #dad9d9;
|
44
|
+
|
45
|
+
&:hover {
|
46
|
+
background: rgba(58, 57, 57, 0.025);
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
&:after {
|
51
|
+
content: '';
|
52
|
+
display: block;
|
53
|
+
width: 100%;
|
54
|
+
height: 32px;
|
55
|
+
position: absolute;
|
56
|
+
left: 0;
|
57
|
+
bottom: -32px;
|
58
|
+
padding-left: auto;
|
59
|
+
padding-right: auto;
|
60
|
+
z-index: 100;
|
61
|
+
background-image: url('images/falling.svg');
|
62
|
+
background-repeat: no-repeat;
|
63
|
+
background-position: 50% 50%;
|
64
|
+
}
|
65
|
+
}
|