Add accent color, change background color for now
This commit is contained in:
parent
cc0e24a752
commit
b2b83f062b
1 changed files with 9 additions and 3 deletions
|
@ -20,7 +20,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #eebebe;
|
--accent-color: #d26c6c;
|
||||||
|
|
||||||
|
background-color: #e3e3e3;
|
||||||
|
accent-color: var(--accent-color);
|
||||||
|
|
||||||
display: grid;
|
display: grid;
|
||||||
}
|
}
|
||||||
|
@ -30,7 +33,7 @@ header {
|
||||||
}
|
}
|
||||||
|
|
||||||
aside {
|
aside {
|
||||||
background-color: #e3e3e3;
|
background-color: white;
|
||||||
|
|
||||||
width: 250px;
|
width: 250px;
|
||||||
|
|
||||||
|
@ -38,11 +41,14 @@ aside {
|
||||||
}
|
}
|
||||||
|
|
||||||
article {
|
article {
|
||||||
background-color: #e3e3e3;
|
background-color: white;
|
||||||
|
|
||||||
grid-area: main;
|
grid-area: main;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
background-color: white;
|
||||||
|
|
||||||
grid-area: foot;
|
grid-area: foot;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue