You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
660 B
39 lines
660 B
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Noto Sans", "Helvetica", sans-serif;
|
|
background-color: black;
|
|
color: white;
|
|
|
|
main {
|
|
margin-left: 30ch; // See side-menu
|
|
width: calc(100% - 30ch);
|
|
margin-right: 0;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Less glaring chrome/ium scrollbars.
|
|
*/
|
|
::-webkit-scrollbar {
|
|
width: 2px;
|
|
/* for vertical scrollbars */
|
|
height: 2px;
|
|
/* for horizontal scrollbars */
|
|
}
|
|
::-webkit-scrollbar-button {
|
|
background-color: #555;
|
|
color: 000;
|
|
display: none;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background-color: #222;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #555;
|
|
color: #000;
|
|
}
|