24 lines
379 B
CSS
24 lines
379 B
CSS
html {
|
|
font-size: 66%;
|
|
}
|
|
|
|
body {
|
|
font-family: "Open sans", sans-serif;
|
|
color: white;
|
|
background-color: #252525;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
button:not(.real) {
|
|
border: none;
|
|
background-color: inherit;
|
|
color: inherit;
|
|
font-size: inherit;
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
button:not(.real):hover {
|
|
background-color: #fff2;
|
|
} |