24 lines
325 B
CSS
24 lines
325 B
CSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
:root {
|
||
|
--ps-primary: #00ffbf;
|
||
|
--ps-primary-hover: #1b7c6d;
|
||
|
--ps-secondary: #444444;
|
||
|
--ps-bg: #292929;
|
||
|
}
|
||
|
|
||
|
html, body {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar {
|
||
|
width: 5px;
|
||
|
}
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
border-radius: 2px;
|
||
|
background-color: rgba(60, 60, 60, 1);
|
||
|
}
|