49 lines
754 B
CSS
49 lines
754 B
CSS
html, body {
|
|
background-color: #333333;
|
|
color: #cccccc;
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
line-height: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
* {
|
|
box-sizing: border-box;
|
|
line-height: 1;
|
|
}
|
|
}
|
|
|
|
body {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #777 #333;
|
|
}
|
|
::-webkit-scrollbar {
|
|
width: 12px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: #333;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #777;
|
|
border-radius: 20px;
|
|
border: 3px solid #333;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Cookbook";
|
|
src: url("/fonts/Cookbook.woff");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Joystix";
|
|
src: url("/fonts/Joystix.woff");
|
|
}
|
|
|
|
form {
|
|
button, input {
|
|
background-color: #222222;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
color: #dddddd;
|
|
}
|
|
}
|