xdrm.io/public/styles.css

54 lines
783 B
CSS
Raw Normal View History

* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
2019-05-10 21:56:51 +00:00
a { text-decoration: none; color: #555; }
a:visited { color: #5e61a0; }
*:before, *:after {
box-sizing: inherit;
}
html, body{
overflow: hidden;
}
2024-09-24 21:48:02 +00:00
button {
border: none;
}
body {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
font-size: 16px;
2022-08-21 08:42:03 +00:00
font-family: 'Source Sans Pro', Arial, sans-serif;
font-weight: 300;
2019-05-09 16:56:46 +00:00
color: #444;
overflow: hidden;
overflow-y: auto;
2022-10-05 14:50:39 +00:00
}
::-webkit-scrollbar {
display: block;
width: .3rem;
background-color: #202228;
overflow: hidden;
}
::-webkit-scrollbar-thumb {
border-radius: .3rem / .3rem;
background-color: #6d7076;
transition: background-color .1s ease-in-out;
}
::-webkit-scrollbar-thumb:hover {
background-color: #a9acb2;
}