diff --git a/style.css b/style.css new file mode 100644 index 0000000..17bd3c1 --- /dev/null +++ b/style.css @@ -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%); +} \ No newline at end of file