Skip to content

Commit 51bab6b

Browse files
committed
Fixing SASS to CSS conversion
1 parent fa8c3b6 commit 51bab6b

File tree

7 files changed

+21
-24
lines changed

7 files changed

+21
-24
lines changed

_config.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ plugins_dir : _plugins
66
layouts_dir : _layouts
77
data_dir : _data
88
includes_dir : _includes
9-
sass:
10-
sass_dir : _sass
11-
sass_dir : _sass
129
collections:
1310
posts:
1411
output : true

_includes/header.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
{% for page in site.pages %} {% if page.title %}
66
<li><a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></li>
77
{% endif %} {% endfor %}
8-
<li><a href="{{ "/blog" | prepend: site.baseurl }}">Blog</a></li>
9-
</ul>
10-
</li>
118
</ul>
129
</nav>
1310
</div>

_sass/base.scss

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
$content-width: 800px;
2-
$main: #19CCAA;
3-
$font-style: 'Open Sans', sans-serif;
4-
$font-color: #262626;
5-
$link-color: #425469;
2+
$main: #00ff33;
3+
$font-style: 'Helvetica Neue', sans-serif;
4+
$font-color: #000;
5+
$link-color: #00ff33;
66
$link-hover-color: $main;
7-
$heading-font: 'Muli', sans-serif;
8-
$heading-font-color: #425469;
9-
$light: #E7EDF4;
10-
$header: #1D1425;
7+
$heading-font: 'Helvetica Neue', sans-serif;
8+
$heading-font-color: #000;
9+
$light: #e6e6e6;
10+
$header: #ccc;
1111

1212
*,
1313
*::before,
1414
*::after {
1515
-webkit-box-sizing: border-box;
1616
-moz-box-sizing: border-box;
1717
box-sizing: border-box;
18+
}
19+
20+
* {
21+
-webkit-font-smoothing: antialiased;
22+
-moz-osx-font-smoothing: grayscale;
1823
}

_sass/layout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ aside {
9494
text-decoration: none;
9595
display: block;
9696
padding: 15px;
97-
font-family: 'Muli', sans-serif;
97+
font-family: $heading-font;
9898
line-height: 20px;
9999
margin-bottom: -1px;
100100
box-shadow: 0;

_sass/syntax-highlighting.scss

Lines changed: 0 additions & 1 deletion
This file was deleted.

css/main.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
# Front matter comment to ensure Jekyll properly reads file.
3+
---
4+
5+
@import
6+
"base",
7+
"layout"

main.scss

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)