Re colored everything to darker colors

This commit is contained in:
Finnder 2022-03-24 22:13:37 -04:00
parent 070c6f0d40
commit d19460fa1e
2 changed files with 10 additions and 6 deletions

View File

@ -1,5 +1,6 @@
+++
title="About Us"
+++
<hr>
We like linux :)
This is an about us page

View File

@ -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;
}
}