neo-hpstr-jekyll-theme 1.0.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 +247 -0
- data/_includes/author.html +26 -0
- data/_includes/browser-upgrade.html +1 -0
- data/_includes/disqus_comments.html +23 -0
- data/_includes/feed-footer.html +1 -0
- data/_includes/footer.html +1 -0
- data/_includes/gallery +21 -0
- data/_includes/head.html +52 -0
- data/_includes/header.html +104 -0
- data/_includes/icons.html +13 -0
- data/_includes/pagination.html +66 -0
- data/_includes/read-more.html +19 -0
- data/_includes/scripts.html +28 -0
- data/_includes/social-share.html +7 -0
- data/_layouts/dark-post.html +49 -0
- data/_layouts/home.html +28 -0
- data/_layouts/page.html +38 -0
- data/_layouts/post.html +49 -0
- data/_sass/_animations.scss +327 -0
- data/_sass/_coderay.scss +66 -0
- data/_sass/_dl-menu.scss +370 -0
- data/_sass/_elements.scss +156 -0
- data/_sass/_grid.scss +47 -0
- data/_sass/_mixins.scss +315 -0
- data/_sass/_page.scss +674 -0
- data/_sass/_reset.scss +156 -0
- data/_sass/_rouge.scss +73 -0
- data/_sass/_site.scss +56 -0
- data/_sass/_typography.scss +125 -0
- data/_sass/_variables.scss +49 -0
- data/_sass/vendor/font-awesome/_animated.scss +34 -0
- data/_sass/vendor/font-awesome/_bordered-pulled.scss +25 -0
- data/_sass/vendor/font-awesome/_core.scss +12 -0
- data/_sass/vendor/font-awesome/_fixed-width.scss +6 -0
- data/_sass/vendor/font-awesome/_icons.scss +697 -0
- data/_sass/vendor/font-awesome/_larger.scss +13 -0
- data/_sass/vendor/font-awesome/_list.scss +19 -0
- data/_sass/vendor/font-awesome/_mixins.scss +26 -0
- data/_sass/vendor/font-awesome/_path.scss +15 -0
- data/_sass/vendor/font-awesome/_rotated-flipped.scss +20 -0
- data/_sass/vendor/font-awesome/_stacked.scss +20 -0
- data/_sass/vendor/font-awesome/_variables.scss +708 -0
- data/_sass/vendor/font-awesome/font-awesome.scss +17 -0
- data/_sass/vendor/magnific-popup/_settings.scss +46 -0
- data/_sass/vendor/magnific-popup/magnific-popup.scss +645 -0
- data/assets/css/jquery.floating-social-share.min.css +7 -0
- data/assets/css/jquery.mmenu.all.css +1504 -0
- data/assets/css/main.scss +28 -0
- data/assets/fonts/FontAwesome.otf +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +655 -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/js/_main.js +97 -0
- data/assets/js/plugins/jekyll-search.js +1 -0
- data/assets/js/plugins/jquery.dlmenu.js +255 -0
- data/assets/js/plugins/jquery.fitvids.js +81 -0
- data/assets/js/plugins/jquery.floating-social-share.min.js +8 -0
- data/assets/js/plugins/jquery.magnific-popup.js +2026 -0
- data/assets/js/plugins/jquery.mmenu.min.all.js +133 -0
- data/assets/js/plugins/respond.js +342 -0
- data/assets/js/scripts.min.js +3 -0
- data/assets/js/vendor/jquery-1.9.1.min.js +5 -0
- data/assets/js/vendor/modernizr-2.6.2.custom.min.js +4 -0
- metadata +152 -0
data/_sass/_coderay.scss
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
.CodeRay {
|
|
2
|
+
font-family: $code-font;
|
|
3
|
+
@include font(12);
|
|
4
|
+
color: #d0d0d0;
|
|
5
|
+
margin-bottom: 1.5em;
|
|
6
|
+
@include rounded(3px);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.CodeRay .code pre {
|
|
10
|
+
margin: 0;
|
|
11
|
+
padding: 1em;
|
|
12
|
+
background-color: #272822;
|
|
13
|
+
border: 1px solid darken($body-color, 5);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
div.CodeRay { }
|
|
17
|
+
span.CodeRay { white-space: pre; border: 0px; padding: 2px }
|
|
18
|
+
|
|
19
|
+
table.CodeRay { border-collapse: collapse; width: 100%; padding: 2px }
|
|
20
|
+
table.CodeRay td {
|
|
21
|
+
padding: 1em 0.5em;
|
|
22
|
+
vertical-align: top;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.CodeRay .line-numbers, .CodeRay .no {
|
|
26
|
+
color: #8f908a;
|
|
27
|
+
text-align: right;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.CodeRay .line-numbers a {
|
|
31
|
+
color: #8f908a;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.CodeRay .line-numbers tt { font-weight: bold }
|
|
35
|
+
.CodeRay .line-numbers .highlighted { color: red }
|
|
36
|
+
.CodeRay .line { display: block; float: left; width: 100%; }
|
|
37
|
+
.CodeRay span.line-numbers { padding: 0 24px 0 4px; }
|
|
38
|
+
.CodeRay .code { width: 100% }
|
|
39
|
+
|
|
40
|
+
ol.CodeRay { font-size: 10pt }
|
|
41
|
+
ol.CodeRay li { white-space: pre }
|
|
42
|
+
|
|
43
|
+
.CodeRay .code pre { overflow: auto }
|
|
44
|
+
.CodeRay .debug { color:white ! important; background:blue ! important; }
|
|
45
|
+
|
|
46
|
+
.CodeRay .doctype,
|
|
47
|
+
.CodeRay .key,
|
|
48
|
+
.CodeRay .instance-variable { color: #f8f8f2; }
|
|
49
|
+
.CodeRay .attribute-name { color: #a6e22e;}
|
|
50
|
+
.CodeRay .symbol,
|
|
51
|
+
.CodeRay .integer,
|
|
52
|
+
.CodeRay .float { color: #ff658b; }
|
|
53
|
+
.CodeRay .string { color: #2dc900; }
|
|
54
|
+
.CodeRay .keyword { color: #66d9ef; }
|
|
55
|
+
.CodeRay .function,
|
|
56
|
+
.CodeRay .class { color: #a6e22e; }
|
|
57
|
+
.CodeRay .regexp,
|
|
58
|
+
.CodeRay .constant,
|
|
59
|
+
.CodeRay .tag { color: #f92672; }
|
|
60
|
+
.CodeRay .modifier,
|
|
61
|
+
.CodeRay .predefined-constant { color: #ff84e4; }
|
|
62
|
+
.CodeRay .comment { color: #75715e; }
|
|
63
|
+
.CodeRay .error { color: #ecc; }
|
|
64
|
+
.CodeRay .content { color: #e6db74; }
|
|
65
|
+
.CodeRay .delimiter { color: #e6db74; }
|
|
66
|
+
.CodeRay .inline { color: #e6db74; }
|
data/_sass/_dl-menu.scss
ADDED
|
@@ -0,0 +1,370 @@
|
|
|
1
|
+
.dl-menuwrapper {
|
|
2
|
+
width: 100%;
|
|
3
|
+
position: absolute;
|
|
4
|
+
top: 0;
|
|
5
|
+
left: 0;
|
|
6
|
+
z-index: 1000;
|
|
7
|
+
-webkit-perspective: 1000px;
|
|
8
|
+
-moz-perspective: 1000px;
|
|
9
|
+
perspective: 1000px;
|
|
10
|
+
-webkit-perspective-origin: 50% 200%;
|
|
11
|
+
-moz-perspective-origin: 50% 200%;
|
|
12
|
+
perspective-origin: 50% 200%;
|
|
13
|
+
@media #{$medium} {
|
|
14
|
+
position: fixed;
|
|
15
|
+
max-width: 175px;
|
|
16
|
+
top: 25px;
|
|
17
|
+
left: 25px;
|
|
18
|
+
}
|
|
19
|
+
button {
|
|
20
|
+
top: 0;
|
|
21
|
+
left: 0;
|
|
22
|
+
background: $comp-color;
|
|
23
|
+
border: none;
|
|
24
|
+
width: 48px;
|
|
25
|
+
height: 45px;
|
|
26
|
+
text-indent: -900em;
|
|
27
|
+
overflow: hidden;
|
|
28
|
+
position: relative;
|
|
29
|
+
cursor: pointer;
|
|
30
|
+
outline: none;
|
|
31
|
+
@include border-radius(0,3px,0,0);
|
|
32
|
+
opacity: 0.6;
|
|
33
|
+
@media #{$medium} {
|
|
34
|
+
@include border-radius(3px,3px,3px,3px);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
button:hover,
|
|
38
|
+
button.dl-active,
|
|
39
|
+
ul {
|
|
40
|
+
background: #aaa;
|
|
41
|
+
}
|
|
42
|
+
button:after {
|
|
43
|
+
content: '';
|
|
44
|
+
position: absolute;
|
|
45
|
+
width: 68%;
|
|
46
|
+
height: 5px;
|
|
47
|
+
background: $white;
|
|
48
|
+
top: 10px;
|
|
49
|
+
left: 16%;
|
|
50
|
+
box-shadow:
|
|
51
|
+
0 10px 0 $white,
|
|
52
|
+
0 20px 0 $white;
|
|
53
|
+
}
|
|
54
|
+
button.dl-active {
|
|
55
|
+
display: none;
|
|
56
|
+
}
|
|
57
|
+
ul {
|
|
58
|
+
padding: 0;
|
|
59
|
+
list-style: none;
|
|
60
|
+
-webkit-transform-style: preserve-3d;
|
|
61
|
+
-moz-transform-style: preserve-3d;
|
|
62
|
+
transform-style: preserve-3d;
|
|
63
|
+
}
|
|
64
|
+
li {
|
|
65
|
+
position: relative;
|
|
66
|
+
h4 {
|
|
67
|
+
margin:0;
|
|
68
|
+
padding: 15px 20px 0;
|
|
69
|
+
color: rgba($white,0.9);
|
|
70
|
+
}
|
|
71
|
+
p {
|
|
72
|
+
margin: 0;
|
|
73
|
+
padding: 15px 20px;
|
|
74
|
+
@include font-rem(14);
|
|
75
|
+
color: rgba($white,0.8);
|
|
76
|
+
font-weight: 300;
|
|
77
|
+
a {
|
|
78
|
+
display: inline;
|
|
79
|
+
padding: 0;
|
|
80
|
+
@include font-rem(14);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
i {
|
|
84
|
+
// display: inline-block;
|
|
85
|
+
}
|
|
86
|
+
a {
|
|
87
|
+
display: block;
|
|
88
|
+
position: relative;
|
|
89
|
+
padding: 15px 20px;
|
|
90
|
+
@include font-rem(14);
|
|
91
|
+
line-height: 20px;
|
|
92
|
+
font-weight: 400;
|
|
93
|
+
color: $white;
|
|
94
|
+
outline: none;
|
|
95
|
+
}
|
|
96
|
+
&.dl-back > a {
|
|
97
|
+
padding-left: 30px;
|
|
98
|
+
background: rgba(0,0,0,0.2);
|
|
99
|
+
}
|
|
100
|
+
&.dl-back:after,
|
|
101
|
+
> a:not(:only-child):after {
|
|
102
|
+
position: absolute;
|
|
103
|
+
top: 0;
|
|
104
|
+
line-height: 50px;
|
|
105
|
+
font-family: 'fontawesome';
|
|
106
|
+
color: $white;
|
|
107
|
+
speak: none;
|
|
108
|
+
-webkit-font-smoothing: antialiased;
|
|
109
|
+
content: "\f105";
|
|
110
|
+
}
|
|
111
|
+
&.dl-back:after {
|
|
112
|
+
left: 10px;
|
|
113
|
+
color: rgba(212,204,198,0.5);
|
|
114
|
+
-webkit-transform: rotate(180deg);
|
|
115
|
+
-moz-transform: rotate(180deg);
|
|
116
|
+
transform: rotate(180deg);
|
|
117
|
+
}
|
|
118
|
+
> a:after {
|
|
119
|
+
right: 10px;
|
|
120
|
+
color: rgba(0,0,0,0.15);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
.dl-menu {
|
|
124
|
+
margin: 0;
|
|
125
|
+
position: absolute;
|
|
126
|
+
width: 100%;
|
|
127
|
+
max-width: 400px;
|
|
128
|
+
overflow-y: auto;
|
|
129
|
+
max-height: 600px;
|
|
130
|
+
opacity: 0;
|
|
131
|
+
pointer-events: none;
|
|
132
|
+
box-shadow: 0 12px 24px rgba($black,0.4);
|
|
133
|
+
-webkit-transform: translateY(10px);
|
|
134
|
+
-moz-transform: translateY(10px);
|
|
135
|
+
transform: translateY(10px);
|
|
136
|
+
-webkit-backface-visibility: hidden;
|
|
137
|
+
-moz-backface-visibility: hidden;
|
|
138
|
+
backface-visibility: hidden;
|
|
139
|
+
@media #{$medium} {
|
|
140
|
+
@include border-radius(3px,3px,3px,3px);
|
|
141
|
+
max-height: 650px;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
.dl-menu.dl-menu-toggle {
|
|
145
|
+
-webkit-transition: all 0.3s ease;
|
|
146
|
+
-moz-transition: all 0.3s ease;
|
|
147
|
+
transition: all 0.3s ease;
|
|
148
|
+
}
|
|
149
|
+
.dl-menu.dl-menuopen {
|
|
150
|
+
opacity: 1;
|
|
151
|
+
pointer-events: auto;
|
|
152
|
+
-webkit-transform: translateY(0px);
|
|
153
|
+
-moz-transform: translateY(0px);
|
|
154
|
+
transform: translateY(0px);
|
|
155
|
+
}
|
|
156
|
+
.dl-submenu {
|
|
157
|
+
@include rounded(3px);
|
|
158
|
+
box-shadow: 0 12px 24px rgba($black,0.4);
|
|
159
|
+
.btn {
|
|
160
|
+
margin-bottom: 0;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
/* Hide the inner submenus */
|
|
164
|
+
li .dl-submenu {
|
|
165
|
+
display: none;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
/*
|
|
169
|
+
When a submenu is openend, we will hide all li siblings.
|
|
170
|
+
For that we give a class to the parent menu called "dl-subview".
|
|
171
|
+
We also hide the submenu link.
|
|
172
|
+
The opened submenu will get the class "dl-subviewopen".
|
|
173
|
+
All this is done for any sub-level being entered.
|
|
174
|
+
*/
|
|
175
|
+
.dl-menu.dl-subview li,
|
|
176
|
+
.dl-menu.dl-subview li.dl-subviewopen > a,
|
|
177
|
+
.dl-menu.dl-subview li.dl-subview > a {
|
|
178
|
+
display: none;
|
|
179
|
+
}
|
|
180
|
+
.dl-menu.dl-subview li.dl-subview,
|
|
181
|
+
.dl-menu.dl-subview li.dl-subview .dl-submenu,
|
|
182
|
+
.dl-menu.dl-subview li.dl-subviewopen,
|
|
183
|
+
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
|
|
184
|
+
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
|
|
185
|
+
display: block;
|
|
186
|
+
}
|
|
187
|
+
/* Animation classes for moving out and in */
|
|
188
|
+
.dl-menu.dl-animate-out {
|
|
189
|
+
-webkit-animation: MenuAnimOut 0.4s ease;
|
|
190
|
+
-moz-animation: MenuAnimOut 0.4s ease;
|
|
191
|
+
animation: MenuAnimOut 0.4s ease;
|
|
192
|
+
}
|
|
193
|
+
@-webkit-keyframes MenuAnimOut {
|
|
194
|
+
100% {
|
|
195
|
+
-webkit-transform: translateZ(300px);
|
|
196
|
+
opacity: 0;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
@-moz-keyframes MenuAnimOut {
|
|
200
|
+
100% {
|
|
201
|
+
-moz-transform: translateZ(300px);
|
|
202
|
+
opacity: 0;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
@keyframes MenuAnimOut {
|
|
206
|
+
100% {
|
|
207
|
+
transform: translateZ(300px);
|
|
208
|
+
opacity: 0;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
.dl-menu.dl-animate-in {
|
|
212
|
+
-webkit-animation: MenuAnimIn 0.4s ease;
|
|
213
|
+
-moz-animation: MenuAnimIn 0.4s ease;
|
|
214
|
+
animation: MenuAnimIn 0.4s ease;
|
|
215
|
+
}
|
|
216
|
+
@-webkit-keyframes MenuAnimIn {
|
|
217
|
+
0% {
|
|
218
|
+
-webkit-transform: translateZ(300px);
|
|
219
|
+
opacity: 0;
|
|
220
|
+
}
|
|
221
|
+
100% {
|
|
222
|
+
-webkit-transform: translateZ(0px);
|
|
223
|
+
opacity: 1;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
@-moz-keyframes MenuAnimIn {
|
|
227
|
+
0% {
|
|
228
|
+
-moz-transform: translateZ(300px);
|
|
229
|
+
opacity: 0;
|
|
230
|
+
}
|
|
231
|
+
100% {
|
|
232
|
+
-moz-transform: translateZ(0px);
|
|
233
|
+
opacity: 1;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
@keyframes MenuAnimIn {
|
|
237
|
+
0% {
|
|
238
|
+
transform: translateZ(300px);
|
|
239
|
+
opacity: 0;
|
|
240
|
+
}
|
|
241
|
+
100% {
|
|
242
|
+
transform: translateZ(0px);
|
|
243
|
+
opacity: 1;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
.dl-menuwrapper > .dl-submenu.dl-animate-in {
|
|
247
|
+
-webkit-animation: SubMenuAnimIn 0.4s ease;
|
|
248
|
+
-moz-animation: SubMenuAnimIn 0.4s ease;
|
|
249
|
+
animation: SubMenuAnimIn 0.4s ease;
|
|
250
|
+
}
|
|
251
|
+
@-webkit-keyframes SubMenuAnimIn {
|
|
252
|
+
0% {
|
|
253
|
+
-webkit-transform: translateZ(-300px);
|
|
254
|
+
opacity: 0;
|
|
255
|
+
}
|
|
256
|
+
100% {
|
|
257
|
+
-webkit-transform: translateZ(0px);
|
|
258
|
+
opacity: 1;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
@-moz-keyframes SubMenuAnimIn {
|
|
262
|
+
0% {
|
|
263
|
+
-moz-transform: translateZ(-300px);
|
|
264
|
+
opacity: 0;
|
|
265
|
+
}
|
|
266
|
+
100% {
|
|
267
|
+
-moz-transform: translateZ(0px);
|
|
268
|
+
opacity: 1;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
@keyframes SubMenuAnimIn {
|
|
272
|
+
0% {
|
|
273
|
+
transform: translateZ(-300px);
|
|
274
|
+
opacity: 0;
|
|
275
|
+
}
|
|
276
|
+
100% {
|
|
277
|
+
transform: translateZ(0px);
|
|
278
|
+
opacity: 1;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
.dl-menuwrapper > .dl-submenu.dl-animate-out {
|
|
282
|
+
-webkit-animation: SubMenuAnimOut 0.4s ease;
|
|
283
|
+
-moz-animation: SubMenuAnimOut 0.4s ease;
|
|
284
|
+
animation: SubMenuAnimOut 0.4s ease;
|
|
285
|
+
}
|
|
286
|
+
@-webkit-keyframes SubMenuAnimOut {
|
|
287
|
+
0% {
|
|
288
|
+
-webkit-transform: translateZ(0px);
|
|
289
|
+
opacity: 1;
|
|
290
|
+
}
|
|
291
|
+
100% {
|
|
292
|
+
-webkit-transform: translateZ(-300px);
|
|
293
|
+
opacity: 0;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
@-moz-keyframes SubMenuAnimOut {
|
|
297
|
+
0% {
|
|
298
|
+
-moz-transform: translateZ(0px);
|
|
299
|
+
opacity: 1;
|
|
300
|
+
}
|
|
301
|
+
100% {
|
|
302
|
+
-moz-transform: translateZ(-300px);
|
|
303
|
+
opacity: 0;
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
@keyframes SubMenuAnimOut {
|
|
307
|
+
0% {
|
|
308
|
+
transform: translateZ(0px);
|
|
309
|
+
opacity: 1;
|
|
310
|
+
}
|
|
311
|
+
100% {
|
|
312
|
+
transform: translateZ(-300px);
|
|
313
|
+
opacity: 0;
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
/* No Touch Fallback */
|
|
317
|
+
.no-touch .dl-menuwrapper li a:hover {
|
|
318
|
+
background: rgba(255,248,213,0.1);
|
|
319
|
+
}
|
|
320
|
+
/* No JS Fallback */
|
|
321
|
+
.no-js {
|
|
322
|
+
.dl-trigger {
|
|
323
|
+
display: none;
|
|
324
|
+
}
|
|
325
|
+
.dl-menuwrapper {
|
|
326
|
+
position: initial;
|
|
327
|
+
@media #{$medium} {
|
|
328
|
+
position: absolute;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
.dl-menuwrapper .dl-menu {
|
|
332
|
+
position: relative;
|
|
333
|
+
opacity: 1;
|
|
334
|
+
pointer-events: auto;
|
|
335
|
+
-webkit-transform: none;
|
|
336
|
+
-moz-transform: none;
|
|
337
|
+
transform: none;
|
|
338
|
+
}
|
|
339
|
+
.dl-menuwrapper li .dl-submenu {
|
|
340
|
+
display: block;
|
|
341
|
+
}
|
|
342
|
+
.dl-menuwrapper li.dl-back {
|
|
343
|
+
display: none;
|
|
344
|
+
}
|
|
345
|
+
.dl-menuwrapper li > a:not(:only-child) {
|
|
346
|
+
background: rgba(0,0,0,0.1);
|
|
347
|
+
}
|
|
348
|
+
.dl-menuwrapper li > a:not(:only-child):after {
|
|
349
|
+
content: '';
|
|
350
|
+
}
|
|
351
|
+
.dl-menu {
|
|
352
|
+
max-height: 100%;
|
|
353
|
+
}
|
|
354
|
+
.dl-menu li {
|
|
355
|
+
display: block;
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
// Menu Color
|
|
359
|
+
.dl-menuwrapper button:hover,
|
|
360
|
+
.dl-menuwrapper button.dl-active,
|
|
361
|
+
.dl-menuwrapper ul {
|
|
362
|
+
background: $comp-color;
|
|
363
|
+
}
|
|
364
|
+
// Fix for IE
|
|
365
|
+
.dl-menu li {
|
|
366
|
+
display: none
|
|
367
|
+
}
|
|
368
|
+
.dl-menuopen li {
|
|
369
|
+
display: block
|
|
370
|
+
}
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
hr {
|
|
2
|
+
display: block;
|
|
3
|
+
margin: 1em 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
height: 1px;
|
|
6
|
+
border: 0;
|
|
7
|
+
border-top: 1px solid #ccc;
|
|
8
|
+
border-bottom: 1px solid #fff;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
// Figures and images
|
|
12
|
+
// --------------------------------------------------
|
|
13
|
+
figure {
|
|
14
|
+
margin: 0;
|
|
15
|
+
padding-top: 10px;
|
|
16
|
+
padding-bottom: 10px;
|
|
17
|
+
@include clearfix();
|
|
18
|
+
img {
|
|
19
|
+
margin-bottom: 10px;
|
|
20
|
+
}
|
|
21
|
+
a {
|
|
22
|
+
img {
|
|
23
|
+
@include translate(0, 0);
|
|
24
|
+
-webkit-transition-duration: 0.25s;
|
|
25
|
+
-moz-transition-duration: 0.25s;
|
|
26
|
+
-o-transition-duration: 0.25s;
|
|
27
|
+
&:hover {
|
|
28
|
+
@include translate(0, -5px);
|
|
29
|
+
@include box-shadow(0 0 10px fade($base-color, 20));
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
&.half {
|
|
34
|
+
@media #{$large} {
|
|
35
|
+
img {
|
|
36
|
+
width: 310px;
|
|
37
|
+
float: left;
|
|
38
|
+
margin-right: 10px;
|
|
39
|
+
}
|
|
40
|
+
figcaption {
|
|
41
|
+
clear: left;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
&.third {
|
|
46
|
+
@media #{$large} {
|
|
47
|
+
img {
|
|
48
|
+
width: 200px;
|
|
49
|
+
float: left;
|
|
50
|
+
margin-right: 10px;
|
|
51
|
+
}
|
|
52
|
+
figcaption {
|
|
53
|
+
clear: left;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
svg:not(:root) {
|
|
59
|
+
overflow: hidden;
|
|
60
|
+
}
|
|
61
|
+
figure.center{
|
|
62
|
+
text-align: center;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
figure.center img{
|
|
66
|
+
float: none;
|
|
67
|
+
}
|
|
68
|
+
// Buttons
|
|
69
|
+
// --------------------------------------------------
|
|
70
|
+
.btn {
|
|
71
|
+
display: inline-block;
|
|
72
|
+
margin-bottom: 20px;
|
|
73
|
+
padding: 8px 20px;
|
|
74
|
+
@include font-rem(14);
|
|
75
|
+
background-color: $primary;
|
|
76
|
+
color: $white;
|
|
77
|
+
border-width: 2px !important;
|
|
78
|
+
border-style: solid !important;
|
|
79
|
+
border-color: $primary;
|
|
80
|
+
@include rounded(3px);
|
|
81
|
+
&:visited {
|
|
82
|
+
color: $white;
|
|
83
|
+
}
|
|
84
|
+
&:hover {
|
|
85
|
+
background-color: $white;
|
|
86
|
+
color: $primary;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
.btn-inverse {
|
|
90
|
+
background-color: $white;
|
|
91
|
+
color: $primary;
|
|
92
|
+
border-color: $white;
|
|
93
|
+
&:visited {
|
|
94
|
+
color: $primary;
|
|
95
|
+
}
|
|
96
|
+
&:hover {
|
|
97
|
+
background-color: $primary;
|
|
98
|
+
color: $white;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
.btn-success {
|
|
102
|
+
background-color: $success;
|
|
103
|
+
color: $white;
|
|
104
|
+
border-color: $success;
|
|
105
|
+
&:visited {
|
|
106
|
+
color: $white;
|
|
107
|
+
}
|
|
108
|
+
&:hover {
|
|
109
|
+
background-color: $white;
|
|
110
|
+
color: $success;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
.btn-warning {
|
|
114
|
+
background-color: $warning;
|
|
115
|
+
color: $white;
|
|
116
|
+
border-color: $warning;
|
|
117
|
+
&:visited {
|
|
118
|
+
color: $white;
|
|
119
|
+
}
|
|
120
|
+
&:hover {
|
|
121
|
+
background-color: $white;
|
|
122
|
+
color: $warning;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
.btn-danger {
|
|
126
|
+
background-color: $danger;
|
|
127
|
+
color: $white;
|
|
128
|
+
border-color: $danger;
|
|
129
|
+
&:visited {
|
|
130
|
+
color: $white;
|
|
131
|
+
}
|
|
132
|
+
&:hover {
|
|
133
|
+
background-color: $white;
|
|
134
|
+
color: $danger;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
.btn-info {
|
|
138
|
+
background-color: $info;
|
|
139
|
+
color: $white;
|
|
140
|
+
border-color: $info;
|
|
141
|
+
&:visited {
|
|
142
|
+
color: $white;
|
|
143
|
+
}
|
|
144
|
+
&:hover {
|
|
145
|
+
background-color: $white;
|
|
146
|
+
color: $info;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// Well
|
|
151
|
+
// --------------------------------------------------
|
|
152
|
+
.well {
|
|
153
|
+
padding: 20px;
|
|
154
|
+
border: 1px solid $comp-color;
|
|
155
|
+
@include rounded(4px);
|
|
156
|
+
}
|