diff --git a/content/about.md b/content/about.md
index a52e05c..5b15c91 100644
--- a/content/about.md
+++ b/content/about.md
@@ -1,5 +1,6 @@
+++
title="About Us"
+++
+
+We like linux :)
-This is an about us page
diff --git a/sass/main.scss b/sass/main.scss
index eb921eb..f9bf05a 100644
--- a/sass/main.scss
+++ b/sass/main.scss
@@ -1,6 +1,6 @@
$sidebar_width: 20%;
-$sidebar_background: rgba(255, 0, 0, .1);
-$body_background: rgba(0, 255, 0, .1);
+$sidebar_background: rgba(45, 45, 45, 1);
+$body_background: rgba(30, 30, 30, 1);
body {
margin: 0;
@@ -18,16 +18,19 @@ body {
padding: 0 16px 0 16px;
}
}
+
main {
height: 100%;
box-sizing: border-box;
margin-left: $sidebar_width;
background: $body_background;
- padding-top: 50px;
+ padding-top: 32px;
+ color: white;
+
article {
margin: auto;
- border: 1px solid blue;
- padding: 16px;
+ border: 1px solid white;
+ padding: 13px;
max-width: 1000px;
}
}