From 55da5e6b28b520afb5fc01842bd55ae90eba23ff Mon Sep 17 00:00:00 2001 From: Adrien MALINGREY Date: Sun, 3 Nov 2019 01:48:14 +0100 Subject: [PATCH] new theme --- css/themes/light-relief.css | 2 ++ css/themes/pure-solid.css | 62 +++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 css/themes/pure-solid.css diff --git a/css/themes/light-relief.css b/css/themes/light-relief.css index e8e8674..a41badc 100644 --- a/css/themes/light-relief.css +++ b/css/themes/light-relief.css @@ -52,9 +52,11 @@ .trail { background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.2); + border-radius: 0vmin; } .ghost { background: rgba(255, 255, 255, 0.4); border: 1px solid rgba(255, 255, 255, 0.4); + border-radius: 0vmin; } diff --git a/css/themes/pure-solid.css b/css/themes/pure-solid.css new file mode 100644 index 0000000..dc10195 --- /dev/null +++ b/css/themes/pure-solid.css @@ -0,0 +1,62 @@ +.invisible-grid > .empty-cell { + background: transparent; + border: 1px solid transparent; +} + +.visible-grid > .empty-cell { + background: transparent; + border: 1px inset rgba(128, 128, 128, 0.3); +} + +.mino { + border: 1px solid white; + border-radius: 0vmin; +} + +.I-mino { + background: cyan; +} + +.J-mino { + background: blue; +} + +.L-mino { + background: orange; +} + +.O-mino { + background: yellow; +} + +.S-mino { + background: green; +} + +.T-mino { + background: magenta; +} + +.Z-mino { + background: red; +} + +.locked-mino { + background: white; +} + +.cleared-line { + background: white; +} + +.trail { + background: rgba(255, 255, 255, 0.2); + border: 1px solid rgba(255, 255, 255, 0.2); + border-radius: 0vmin; +} + +.ghost { + background: rgba(255, 255, 255, 0.4); + border: 1px solid rgba(255, 255, 255, 0.4); + border-radius: 0vmin; +}