1
+ ---
2
+ ---
3
+
1
4
//
2
5
// IMPORTS
3
6
//
10
13
/* BASE RULES */
11
14
/* *************/
12
15
13
- :root {
14
- --white : #FFFFFF ; /* white */
15
- --purple : #301F6E ; /* purple */
16
- --orange : #F08C00 ; /* orange */
17
- --green : #04947A ; /* green */
18
- --cyan : #2DE2E6 ; /* cyan */
19
- --pink : #D82F86 ; /* pink */
20
- --lightpink : #00FF15 ; /* light pink */
21
- --darkpink : #D82F86 /* dark pink */
22
- --darkblue : #023788 ; /* dark blue */
23
- }
24
-
25
16
html {
26
17
font-size : 100% ;
27
18
}
28
19
29
20
body {
30
- background : var ( --purple ) ;
21
+ background : $white ;
31
22
font : 18px / 1.4 $helvetica ;
32
- color : var ( --white ) ;
23
+ color : $darkGray ;
33
24
}
34
25
35
26
.container {
41
32
42
33
h1 , h2 , h3 , h4 , h5 , h6 {
43
34
font-family : $helveticaNeue ;
44
- color : var ( --cyan ) ;
35
+ color : $darkerGray ;
45
36
font-weight : bold ;
46
37
47
38
line-height : 1.7 ;
78
69
}
79
70
80
71
a {
81
- color : var ( --orange ) ;
72
+ color : $blue ;
82
73
text-decoration : none ;
83
74
cursor : pointer ;
84
75
& :hover , & :active {
85
- color : var ( --orange ) ;
76
+ color : $blue ;
86
77
}
87
78
}
88
79
@@ -131,15 +122,16 @@ img {
131
122
132
123
// Specify the color of the selection
133
124
::-moz-selection {
134
- color : var ( --darkpink ) ;
125
+ color : $black ;
135
126
background : $lightGray ;
136
127
}
137
128
::selection {
138
- color : var ( --darkpink ) ;
129
+ color : $black ;
139
130
background : $lightGray ;
140
131
}
141
132
142
133
// Nicolas Gallagher's micro clearfix hack
134
+ // http://nicolasgallagher.com/micro-clearfix-hack/
143
135
.clearfix :before ,
144
136
.clearfix :after {
145
137
content : " " ;
@@ -200,7 +192,7 @@ img {
200
192
201
193
.site-name {
202
194
margin : 0 ;
203
- color : var ( --cyan ) ;
195
+ color : $darkGray ;
204
196
cursor : pointer ;
205
197
font-family : $helveticaNeue ;
206
198
font-weight : 300 ;
@@ -210,7 +202,7 @@ img {
210
202
211
203
.site-description {
212
204
margin : -5px 0 0 0 ;
213
- color : var ( --cyan ) ;
205
+ color : $gray ;
214
206
font-size : 16px ;
215
207
216
208
@include mobile {
@@ -233,14 +225,14 @@ nav {
233
225
234
226
a {
235
227
margin-left : 20px ;
236
- color : var ( --cyan ) ;
228
+ color : $darkGray ;
237
229
text-align : right ;
238
230
font-weight : 300 ;
239
231
letter-spacing : 1px ;
240
232
241
233
@include mobile {
242
234
margin : 0 10px ;
243
- color : var ( --orange ) ;
235
+ color : $blue ;
244
236
}
245
237
}
246
238
}
@@ -291,6 +283,7 @@ footer {
291
283
text-align : center ;
292
284
}
293
285
294
- // Syntax highlighting and icons
286
+ // Settled on moving the import of syntax highlighting to the bottom of the CSS
287
+ // ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start
295
288
@import " highlights" ;
296
- @import " svg-icons" ;
289
+ @import " svg-icons" ;
0 commit comments