colors
This commit is contained in:
parent
2ed5b5cbae
commit
452a744adf
2 changed files with 8 additions and 8 deletions
|
@ -1,7 +1,8 @@
|
||||||
:root {
|
:root {
|
||||||
--fg: rgb(240, 240, 240);
|
--bg: rgb(16, 16, 16);
|
||||||
|
--fg: #CCCCCC;
|
||||||
--blue: rgb(110, 194, 240);
|
--blue: rgb(110, 194, 240);
|
||||||
--title: rgb(110, 194, 240);
|
--title: #ffe2e7;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
|
@ -33,8 +34,10 @@ header {
|
||||||
}
|
}
|
||||||
.burger {
|
.burger {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding-left: 4px;
|
|
||||||
padding-right: 4px;
|
padding-right: 4px;
|
||||||
|
@media(max-width:768px) {
|
||||||
|
padding-left: 4px;
|
||||||
|
}
|
||||||
svg {
|
svg {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
//background: rgb(240, 240, 240);
|
background: var(--bg);
|
||||||
//background: rgb(144, 144, 144);
|
color: var(--fg);
|
||||||
//color: rgb(0, 0, 0);
|
|
||||||
background: rgb(16, 16, 16);
|
|
||||||
color: rgb(240, 240, 240);
|
|
||||||
font-family: "Noto Sans", "Lucida Grande", "Segoe UI", "DejaVu Sans", "Lucida Sans Unicode", Helvetica, Arial, sans-serif;
|
font-family: "Noto Sans", "Lucida Grande", "Segoe UI", "DejaVu Sans", "Lucida Sans Unicode", Helvetica, Arial, sans-serif;
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue