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