@@ -5,7 +5,7 @@ title: false
5
5
6
6
// Frameworks & Imports
7
7
@charset " utf-8" ;
8
- @import " colors " ;
8
+ @import " settings " ;
9
9
@import " normalize" ;
10
10
@import " sassline-base" ;
11
11
@import " syntax" ;
@@ -14,8 +14,8 @@ title: false
14
14
15
15
// Structural elements
16
16
body {
17
- background : $color__site--background ;
18
- color : $color__site--body ;
17
+ background : $backgroundColour ;
18
+ color : $bodyColour ;
19
19
height : 100% ;
20
20
display : flex ;
21
21
@include flex-direction (column );
52
52
padding-bottom : .4rem ;
53
53
margin-bottom : 1.6rem ;
54
54
text-align : center ;
55
- background : $color__site--accent ;
55
+ background : $featureBackgroundColour ;
56
56
background-size : cover ;
57
57
background-position : center ;
58
58
@include flexbox ;
@@ -75,16 +75,16 @@ body {
75
75
76
76
.small {
77
77
padding-top : .8rem ;
78
- color : $color__site--captions ;
78
+ color : $captionColour ;
79
79
display : inline-block ;
80
80
}
81
81
82
82
.footer {
83
- background : lighten (invert ($color__site--background ), 15% );
83
+ background : lighten (invert ($backgroundColour ), 15% );
84
84
a {
85
- color : invert ( $color__site--heading );
85
+ color : darken ( $backgroundColour , 15 % );
86
86
& :hover {
87
- color : lighten ( invert ( $color__site--body ), 15 % ) ;
87
+ color : $backgroundColour ;
88
88
}
89
89
}
90
90
}
95
95
& --paginator {
96
96
@include flexbox ;
97
97
@include justify-content (space-between );
98
- color : $color__site--captions ;
98
+ color : $captionColour ;
99
99
text-align : center ;
100
100
}
101
101
& --social {
@@ -212,7 +212,7 @@ body {
212
212
}
213
213
& --current {
214
214
a {
215
- color : $color__site--link--current ;
215
+ opacity : 0.5 ;
216
216
}
217
217
}
218
218
}
@@ -227,7 +227,7 @@ body {
227
227
display : inline-block ;
228
228
transition : fill .1s ;
229
229
& :hover {
230
- fill : darken ($color__site--link , 10% );
230
+ fill : darken ($linkColour , 10% );
231
231
}
232
232
}
233
233
}
@@ -334,7 +334,7 @@ button,
334
334
.button {
335
335
cursor : pointer ;
336
336
display : inline-block ;
337
- background : $color__site--accent ;
337
+ background : $accentColour ;
338
338
position : relative ;
339
339
transition : box-shadow .1s ;
340
340
will-change : box-shadow ;
@@ -355,7 +355,7 @@ input,
355
355
textarea {
356
356
& :focus ,
357
357
& :hover:focus {
358
- outline : solid .12rem invert ($color__site--accent );
358
+ outline : solid .12rem invert ($accentColour );
359
359
}
360
360
}
361
361
@@ -368,9 +368,9 @@ input[type="email"],
368
368
input [type = " search" ],
369
369
textarea {
370
370
width : 100% ;
371
- border : 1px solid $color__site--captions ;
371
+ border : 1px solid $captionColour ;
372
372
& :hover {
373
- border-color : darken ($color__site--captions , 20% );
373
+ border-color : darken ($captionColour , 20% );
374
374
}
375
375
}
376
376
@@ -395,21 +395,21 @@ pre code {
395
395
}
396
396
397
397
::-webkit-input-placeholder {
398
- color : darken ($color__site--captions , 30% );
398
+ color : darken ($captionColour , 30% );
399
399
}
400
400
::-moz-placeholder {
401
- color : darken ($color__site--captions , 30% );
401
+ color : darken ($captionColour , 30% );
402
402
}
403
403
:-ms-input-placeholder {
404
- color : darken ($color__site--captions , 30% );
404
+ color : darken ($captionColour , 30% );
405
405
}
406
406
:-moz-placeholder {
407
- color : darken ($color__site--captions , 30% );
407
+ color : darken ($captionColour , 30% );
408
408
}
409
409
410
410
::selection {
411
- background : $color__site--heading ;
412
- color : $color__site--background ;
411
+ background : invert ( $backgroundColour ) ;
412
+ color : $backgroundColour ;
413
413
text-shadow : none ;
414
414
}
415
415
@@ -419,12 +419,12 @@ pre code {
419
419
button {
420
420
background-image : none ;
421
421
text-shadow : none ;
422
- color : lighten ( invert ( $color__site--body ), 15 % ) ;
422
+ color : $backgroundColour ;
423
423
& :hover ,
424
424
& :active ,
425
425
& :focus {
426
426
background-image : none ;
427
- color : lighten ( invert ( $color__site--body ), 15 % ) ;
427
+ color : $backgroundColour ;
428
428
}
429
429
}
430
430
hr {
0 commit comments