Add style.css

This commit is contained in:
Nova Cat 2025-01-13 15:58:39 -08:00
parent b61f1e4c38
commit 0f0c06ef3c

28
style.css Normal file
View file

@ -0,0 +1,28 @@
/* 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%);
}