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.
53 lines
881 B
53 lines
881 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% - 32ch);
|
|
margin-right: 0;
|
|
}
|
|
@media screen and (min-width: 700px) {
|
|
main.with-right {
|
|
width: calc(100% - 60ch)
|
|
}
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 700px) {
|
|
body {
|
|
main {
|
|
margin-left: 0.25ch;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* 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;
|
|
}
|