forked from Ailur/burgernotes-server
Update static/css/style.css
This commit is contained in:
parent
408e7437bc
commit
96aae82390
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--invertdm: 0%;
|
--invertdm: 0%;
|
||||||
--link: #f8f8f8;
|
|
||||||
--bar: #f4f4f4;
|
--bar: #f4f4f4;
|
||||||
--editor: #ffffff;
|
--editor: #ffffff;
|
||||||
--text-color: #000000;
|
--text-color: #000000;
|
||||||
|
@ -24,7 +23,6 @@
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
:root {
|
:root {
|
||||||
--invertdm: 100%;
|
--invertdm: 100%;
|
||||||
--link: #5c5c5c;
|
|
||||||
--bar: #2d2f31;
|
--bar: #2d2f31;
|
||||||
--editor: #202124;
|
--editor: #202124;
|
||||||
--text-color: #ffffff;
|
--text-color: #ffffff;
|
||||||
|
@ -671,7 +669,7 @@ body {
|
||||||
.links a {
|
.links a {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: var(--link);
|
background-color: var(--bar);
|
||||||
filter: invert(var(--invertdm));
|
filter: invert(var(--invertdm));
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
@ -680,7 +678,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.links a:hover {
|
.links a:hover {
|
||||||
background-color: #eaeaea;
|
background-color: var(--editor);
|
||||||
}
|
}
|
||||||
|
|
||||||
.links a img {
|
.links a img {
|
||||||
|
|
Loading…
Reference in New Issue