diff options
author | Minteck <contact@minteck.org> | 2022-07-09 15:22:44 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-07-09 15:22:44 +0200 |
commit | 5abe8cba55965f70e07e1163239bcc9d797c864a (patch) | |
tree | eb29933d2d5420c134f21a941cceb1d361c53b1d /assets/global.css | |
parent | 1a3ff5e4f8bbd4cf35093cdb42d0d93ca635c91e (diff) | |
download | bits-client-5abe8cba55965f70e07e1163239bcc9d797c864a.tar.gz bits-client-5abe8cba55965f70e07e1163239bcc9d797c864a.tar.bz2 bits-client-5abe8cba55965f70e07e1163239bcc9d797c864a.zip |
Bye bye desktop app
Diffstat (limited to 'assets/global.css')
-rw-r--r-- | assets/global.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/assets/global.css b/assets/global.css new file mode 100644 index 0000000..624ab39 --- /dev/null +++ b/assets/global.css @@ -0,0 +1,38 @@ +:root { + --perc-color: black; +} + +* { + user-select: none; + overflow-x: hidden !important; +} + +body { + color: white; + font-family: sans-serif; +} + +.ln:hover { + text-decoration: underline; +} + +.ln:active { + opacity: .75; +} + +.transaction { + transition: background-color 100ms; +} + +.transaction:hover { + background-color: rgba(0, 0, 0, .1); +} + +@keyframes shake { + 0% { + transform: scale(1); + } + 100% { + transform: scale(1.5); + } +}
\ No newline at end of file |