47 lines
727 B
CSS
47 lines
727 B
CSS
html {
|
|
font-family: 'Source Sans Pro', sans-serif;
|
|
font-size: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: inherit;
|
|
font-size: 1em;
|
|
|
|
background-color: #242424;
|
|
color: #FCFCFC;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
overflow-y: overlay;
|
|
}
|
|
|
|
*, *:after, *:before {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
a, a:hover, a:visited, a:active {
|
|
text-decoration: none;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 4px;
|
|
background: rgba(0,0,0,0);
|
|
position: absolute;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track
|
|
{
|
|
-webkit-border-radius: 15px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
-webkit-border-radius: 10px;
|
|
border-radius: 10px;
|
|
background: rgba(110,110,110,0.9);
|
|
}
|