aboutsummaryrefslogtreecommitdiffstats
path: root/app/style.js
diff options
context:
space:
mode:
authors-ol <s+removethis@s-ol.nu>2022-01-04 19:47:01 +0000
committers-ol <s+removethis@s-ol.nu>2022-01-04 19:48:30 +0000
commit582452e79ab43e174ff33641cf7deb81fe25fcb4 (patch)
treebaeeafae6561426e995d18573766915ac7c757e4 /app/style.js
parentrename to "isomorphic-kb-explorer" (diff)
downloadisomorphic-kb-explorer-582452e79ab43e174ff33641cf7deb81fe25fcb4.tar.gz
isomorphic-kb-explorer-582452e79ab43e174ff33641cf7deb81fe25fcb4.zip
add scale highlighting
Diffstat (limited to 'app/style.js')
-rw-r--r--app/style.js15
1 files changed, 14 insertions, 1 deletions
diff --git a/app/style.js b/app/style.js
index ea59e75..0bd718e 100644
--- a/app/style.js
+++ b/app/style.js
@@ -82,17 +82,30 @@ body {
font-size: ${rem(longSize * 0.5)};
text-align: center;
background: #696969;
+ border: 3px solid #696969;
color: #eeeeee;
cursor: pointer;
- transition: background 300ms;
+ transition: background 300ms, border 300ms;
}
+
+.hexagon.disabled > .inner {
+ background: #363636 !important;
+ border-color: #363636;
+ color: #848484;
+}
+.hexagon.core> .inner {
+ border-color: #eeeeee;
+}
+
.hexagon > .inner:hover {
background: #848484;
+ border-color: #848484;
}
.hexagon > .inner:active,
.hexagon.active > .inner {
background: #eeeeee;
+ border-color: #eeeeee;
color: #696969;
}