28 lines
566 B
CSS
28 lines
566 B
CSS
|
/* SweeSS-like stylesheet for Gem2Browser */
|
||
|
html {
|
||
|
background-color: #242424;
|
||
|
color: white;
|
||
|
height: 100%;
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
a {
|
||
|
color: deepskyblue;
|
||
|
text-decoration:underline;
|
||
|
text-decoration-style: dotted;
|
||
|
}
|
||
|
.download {
|
||
|
border: none;
|
||
|
border-radius: 5px;
|
||
|
background: deepskyblue;
|
||
|
transition: filter 0.1s;
|
||
|
transition-timing-function: ease-in;
|
||
|
padding: 10px;
|
||
|
display: inline-block;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.download:hover {
|
||
|
filter: brightness(150%);
|
||
|
}
|
||
|
.download:acive {
|
||
|
filter: brightness(75%);
|
||
|
}
|