summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--style.scss8
1 files changed, 8 insertions, 0 deletions
diff --git a/style.scss b/style.scss
index 759ae4d..b4d91d2 100644
--- a/style.scss
+++ b/style.scss
@@ -33,3 +33,11 @@ video {
width: 100%;
height: 100%;
}
+
+// Hide eye field except when human checkbox enabled
+.eye {
+ opacity: 0;
+}
+#human:checked ~ .eye {
+ opacity: 100;
+}