move background to body, change var name

This commit is contained in:
Asif Bacchus 2020-04-10 04:57:50 -06:00
parent 3a124e6809
commit aec19308ab
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
// colours used thoughout site
:root {
--col-bg-canvas: #2c2830;
--col-bg: #2c2830;
--col-particle: #ebe7c5;
--col-particle-stroke: #692e50;
--col-particle-stroke-hover: #9aa68b;

View File

@ -8,6 +8,7 @@ import partials
body {
color: var(--col-text);
background-color: var(--col-bg);
}
h1 {
@ -32,6 +33,5 @@ p {
left: 0;
width: 100%;
height: 100%;
background: var(--col-bg-canvas);
z-index: -999;
}