32 lines
440 B
CSS
32 lines
440 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: "Open sans", sans-serif;
|
|
color: white;
|
|
background-color: #252525;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
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;
|
|
} |