Update static/css/style.css
This commit is contained in:
parent
4ac2034025
commit
0282299aa2
|
@ -1,6 +1,7 @@
|
||||||
@import url("../fonts/inter.css");
|
@import url("../fonts/inter.css");
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
|
--contrast: #eee;
|
||||||
--invertdm: 0%;
|
--invertdm: 0%;
|
||||||
--bar: #f4f4f4;
|
--bar: #f4f4f4;
|
||||||
--editor: #ffffff;
|
--editor: #ffffff;
|
||||||
|
@ -23,6 +24,7 @@
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
:root {
|
:root {
|
||||||
--invertdm: 100%;
|
--invertdm: 100%;
|
||||||
|
--contrast: #2d2f21;
|
||||||
--bar: #2d2f31;
|
--bar: #2d2f31;
|
||||||
--editor: #202124;
|
--editor: #202124;
|
||||||
--text-color: #ffffff;
|
--text-color: #ffffff;
|
||||||
|
@ -294,10 +296,10 @@ body {
|
||||||
.notesBar .loadingStuff {
|
.notesBar .loadingStuff {
|
||||||
border: none;
|
border: none;
|
||||||
background:
|
background:
|
||||||
linear-gradient(0.25turn, transparent, var(--bar), transparent),
|
linear-gradient(0.25turn, transparent, var(--editor), transparent),
|
||||||
linear-gradient(var(--editor), var(--editor)),
|
linear-gradient(var(--contrast), var(--contrast)),
|
||||||
radial-gradient(38px circle at 19px 19px, #eee 50%, transparent 51%),
|
radial-gradient(38px circle at 19px 19px, #eee 50%, transparent 51%),
|
||||||
linear-gradient(var(--editor), var(--editor));
|
linear-gradient(var(--contrast), var(--contrast));
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 315px 250px, 315px 180px, 100px 100px, 225px 30px;
|
background-size: 315px 250px, 315px 180px, 100px 100px, 225px 30px;
|
||||||
background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
|
background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
|
||||||
|
|
Loading…
Reference in New Issue