Skip to content

Commit c8e7668

Browse files
committed
reset
1 parent fd064e6 commit c8e7668

File tree

2 files changed

+27
-27
lines changed

2 files changed

+27
-27
lines changed

_sass/_variables.scss

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
//
44

55
// Colors
6-
$accent: #4183c4;
6+
$blue: #4183c4;
77

88
// Grays
9-
$background-dark: #000;
10-
$heading-color: #222;
11-
$primary-text: #333;
12-
$secondary-text: #666;
13-
$border-color: #eee;
14-
$background-light: #fff;
9+
$black: #000;
10+
$darkerGray: #222;
11+
$darkGray: #333;
12+
$gray: #666;
13+
$lightGray: #eee;
14+
$white: #fff;
1515

1616
// Font stacks
1717
$helvetica: Helvetica, Arial, sans-serif;

style.scss

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ html {
1818
}
1919

2020
body {
21-
background: $background-light;
21+
background: $white;
2222
font: 18px/1.4 $helvetica;
23-
color: $primary-text;
23+
color: $darkGray;
2424
}
2525

2626
.container {
@@ -37,7 +37,7 @@ h4,
3737
h5,
3838
h6 {
3939
font-family: $helveticaNeue;
40-
color: $heading-color;
40+
color: $darkerGray;
4141
font-weight: bold;
4242

4343
line-height: 1.7;
@@ -66,20 +66,20 @@ h3 {
6666

6767
h4 {
6868
font-size: 18px;
69-
color: $secondary-text;
69+
color: $gray;
7070
}
7171

7272
p {
7373
margin: 15px 0;
7474
}
7575

7676
a {
77-
color: $accent;
77+
color: $blue;
7878
text-decoration: none;
7979
cursor: pointer;
8080
&:hover,
8181
&:active {
82-
color: $accent;
82+
color: $blue;
8383
}
8484
}
8585

@@ -130,17 +130,17 @@ img {
130130

131131
.date {
132132
font-style: italic;
133-
color: $secondary-text;
133+
color: $gray;
134134
}
135135

136136
// Specify the color of the selection
137137
::-moz-selection {
138-
color: $background-dark;
139-
background: $border-color;
138+
color: $black;
139+
background: $lightGray;
140140
}
141141
::selection {
142-
color: $background-dark;
143-
background: $border-color;
142+
color: $black;
143+
background: $lightGray;
144144
}
145145

146146
// Nicolas Gallagher's micro clearfix hack
@@ -169,7 +169,7 @@ img {
169169

170170
.masthead {
171171
padding: 20px 0;
172-
border-bottom: 1px solid $border-color;
172+
border-bottom: 1px solid $lightGray;
173173

174174
@include mobile {
175175
text-align: center;
@@ -205,7 +205,7 @@ img {
205205

206206
.site-name {
207207
margin: 0;
208-
color: $primary-text;
208+
color: $darkGray;
209209
cursor: pointer;
210210
font-family: $helveticaNeue;
211211
font-weight: 300;
@@ -215,7 +215,7 @@ img {
215215

216216
.site-description {
217217
margin: -5px 0 0 0;
218-
color: $secondary-text;
218+
color: $gray;
219219
font-size: 16px;
220220

221221
@include mobile {
@@ -238,14 +238,14 @@ nav {
238238

239239
a {
240240
margin-left: 20px;
241-
color: $primary-text;
241+
color: $darkGray;
242242
text-align: right;
243243
font-weight: 300;
244244
letter-spacing: 1px;
245245

246246
@include mobile {
247247
margin: 0 10px;
248-
color: $accent;
248+
color: $blue;
249249
}
250250
}
251251
}
@@ -256,7 +256,7 @@ nav {
256256

257257
.posts > .post {
258258
padding-bottom: 2em;
259-
border-bottom: 1px solid $border-color;
259+
border-bottom: 1px solid $lightGray;
260260
}
261261

262262
.posts > .post:last-child {
@@ -267,9 +267,9 @@ nav {
267267
.post {
268268
blockquote {
269269
margin: 1.8em 0.8em;
270-
border-left: 2px solid $secondary-text;
270+
border-left: 2px solid $gray;
271271
padding: 0.1em 1em;
272-
color: $secondary-text;
272+
color: $gray;
273273
font-size: 22px;
274274
font-style: italic;
275275
}
@@ -288,7 +288,7 @@ nav {
288288
margin-top: 50px;
289289
border-top: 1px solid #ddd;
290290
border-bottom: 1px solid #ddd;
291-
background-color: $border-color;
291+
background-color: $lightGray;
292292
}
293293

294294
footer {

0 commit comments

Comments
 (0)