"Besseres" grau überall

This commit is contained in:
Daniel Kluge 2022-02-09 17:07:46 +01:00
parent f85dcf3b91
commit 95954884ba

View File

@ -7,10 +7,11 @@
height: 100vh; height: 100vh;
padding: 5%; padding: 5%;
background: transparent; background: transparent;
--modal-gray: #0e0f0e;
} }
.modalContainer { .modalContainer {
background: #0e0f0e; background: var(--modal-gray, #0e0f0e);
color: #ccc; color: #ccc;
width: 100%; width: 100%;
height: 100%; height: 100%;
@ -28,7 +29,7 @@
.modalClose { .modalClose {
float: right; float: right;
position: relative; position: relative;
background: #272b30; background: var(--modal-gray, #0e0f0e);
border-radius: 50%; border-radius: 50%;
width: 2em; width: 2em;
height: 2em; height: 2em;
@ -51,7 +52,7 @@
/* Firefox */ /* Firefox */
.modalContainer { .modalContainer {
scrollbar-width: auto; scrollbar-width: auto;
scrollbar-color: var(--repl-color, #188a18) #272b30; scrollbar-color: var(--repl-color, #188a18) var(--modal-gray, #0e0f0e);
} }
/* Chrome, Edge, and Safari */ /* Chrome, Edge, and Safari */
@ -60,7 +61,7 @@
} }
.modalContainer::-webkit-scrollbar-track { .modalContainer::-webkit-scrollbar-track {
background: #272b30; background: var(--modal-gray, #0e0f0e);
border-bottom-right-radius: 20px; border-bottom-right-radius: 20px;
border-top-right-radius: 20px; border-top-right-radius: 20px;
} }