diff --git a/_includes/head.html b/_includes/head.html
index 47057b50..df8b5a50 100644
--- a/_includes/head.html
+++ b/_includes/head.html
@@ -7,6 +7,7 @@
+
diff --git a/_layouts/default.html b/_layouts/default.html
index fe34e101..009b03e4 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -5,7 +5,7 @@
{{ content }}
diff --git a/css/main.scss b/css/main.scss
index 2e7c1803..4590be88 100755
--- a/css/main.scss
+++ b/css/main.scss
@@ -4,9 +4,8 @@
@charset "utf-8";
-
// Our variables
-$base-font-family: Helvetica, Arial, sans-serif;
+$base-font-family: 'Droid Sans', sans-serif;
$base-font-size: 16px;
$small-font-size: $base-font-size * 0.875;
$base-line-height: 1.5;
@@ -53,7 +52,6 @@ $on-laptop: 800px;
;
-/***** Layout Styles ******/
* {
@@ -64,13 +62,30 @@ body {
display: flex;
}
+/***** Sidebar ******/
+
+
.sidebar {
background: $color-blue-5;
flex: 0 1 250px;
height: 100vh;
- padding: $spacing-unit;
}
+.sidebar--logo {
+ font-size: $base-font-size * 2;
+ font-weight: bold;
+ text-align: center;
+ padding: $spacing-unit;
+ border-bottom: 1px solid $color-blue-4;
+ a {
+ color: $color-white;
+ }
+}
+
+
+/***** Content ******/
+
.content {
-
+ padding: $spacing-unit;
+ flex: 0 1 auto;
}