summaryrefslogtreecommitdiff
path: root/main.css
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-04-15 21:10:01 -0400
committerLLLL Colonq <llll@colonq>2025-04-15 21:10:01 -0400
commitb31fd7881f8da11dbdd1cc259907b535d96a47a4 (patch)
tree1829fe570e53a0876990c6056da6f71880b65493 /main.css
parentbd1256504b6154c7d9b8feb0fefb6755b11586ee (diff)
Add gizmo page
Diffstat (limited to 'main.css')
-rw-r--r--main.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/main.css b/main.css
index cb79905..3ae4a25 100644
--- a/main.css
+++ b/main.css
@@ -571,3 +571,39 @@ a.lcolonq-button-link :active {
#lcolonq-throwshade-current {
margin: 0.5rem;
}
+
+/* gizmo */
+#lcolonq-gizmo-body {
+ width: 100vw;
+ height: 100vh;
+}
+#lcolonq-gizmo {
+ width: 100%;
+ height: 100%;
+}
+#lcolonq-gizmo-top {
+ position: absolute;
+ opacity: 0;
+ transition: opacity 0.2s ease-in-out;
+ right: 0px;
+ top: 0px;
+ color: white;
+ background-color: black;
+ padding-top: 1rem;
+ padding-left: 1rem;
+ padding-right: 1rem;
+ padding-bottom: 1rem;
+}
+#lcolonq-gizmo-top:hover {
+ opacity: 1;
+}
+#lcolonq-gizmo-bottom {
+ background-color: white;
+ width: 100%;
+ height: 100%;
+}
+#lcolonq-gizmo-contents {
+ border: none;
+ width: 100%;
+ height: 100%;
+}