🎨 Styled scrollbars
This commit is contained in:
parent
eb69ddfef9
commit
1c8406ce3c
1 changed files with 13 additions and 5 deletions
18
style.css
18
style.css
|
|
@ -5,6 +5,19 @@
|
||||||
--err-color: #393939;
|
--err-color: #393939;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::selection {
|
||||||
|
background-color: var(--ac-color);
|
||||||
|
color: var(--bg-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #4a4a4a;
|
||||||
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
|
|
@ -12,11 +25,6 @@
|
||||||
font-family: 'Poppins', 'Roboto', 'Noto', sans-serif;
|
font-family: 'Poppins', 'Roboto', 'Noto', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
::selection {
|
|
||||||
background-color: var(--ac-color);
|
|
||||||
color: var(--bg-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fadein {
|
@keyframes fadein {
|
||||||
from {
|
from {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue