summaryrefslogtreecommitdiff
path: root/fig-frontend/client/src/index.css
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2023-12-19 13:08:22 -0500
committerLLLL Colonq <llll@colonq>2023-12-19 13:08:22 -0500
commit0be357bb60a2bc4523056aba34add78b715211f5 (patch)
tree5c401183dc05342ee6efc8a4bd163e60a0c17298 /fig-frontend/client/src/index.css
parent40a3ac0bd9188139c2cd6b8b1b116e20b6ed8446 (diff)
Add fig-frontend
Diffstat (limited to 'fig-frontend/client/src/index.css')
-rw-r--r--fig-frontend/client/src/index.css30
1 files changed, 30 insertions, 0 deletions
diff --git a/fig-frontend/client/src/index.css b/fig-frontend/client/src/index.css
new file mode 100644
index 0000000..891c5fd
--- /dev/null
+++ b/fig-frontend/client/src/index.css
@@ -0,0 +1,30 @@
+body {
+ margin: 0px;
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ width: 100vw;
+ height: 100vh;
+}
+
+fig-window {
+ display: block;
+ position: absolute;
+}
+
+fig-header {
+ position: absolute;
+ text-align: center;
+ border-radius: 100px;
+ border-style: solid;
+ border-color: silver;
+ border-width: 5px;
+ background: linear-gradient(0deg, rgba(89,89,89,1) 35%, rgba(158,158,158,1) 100%);
+ top: 1em;
+ left: 33vw;
+ width: 33vw;
+}
+
+fig-header:hover {
+ filter: brightness(150%);
+}