blob: 1f346fb8b36d4a76ca16e4e34123626c69a82d4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
html {
background-color: #121212;
border: 3vh solid #121212;
font-family: sans-serif;
font-size: 2vh;
color: white;
}
a:link, a:visited {
background-color: #f44336;
color: white;
padding: 1px 1px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: red;
}
|