From 0f0c06ef3c4bce076e2bb74a774e00cfa1434d12 Mon Sep 17 00:00:00 2001 From: swee Date: Mon, 13 Jan 2025 15:58:39 -0800 Subject: [PATCH] Add style.css --- style.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 style.css 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