summaryrefslogtreecommitdiff
path: root/fig-frontend-client/main.css
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2024-03-01 18:39:11 -0500
committerLLLL Colonq <llll@colonq>2024-03-01 18:39:11 -0500
commit88e2726fc1fc6cec2b9e63526ce4c0a1a04a2e98 (patch)
tree94fd56c8c02e422a54d69aa7dec798b7a55d6a2d /fig-frontend-client/main.css
parent4a23754fc6515c947e0bbac38cd0e558b701fe2f (diff)
Add new frontend
Diffstat (limited to 'fig-frontend-client/main.css')
-rw-r--r--fig-frontend-client/main.css49
1 files changed, 49 insertions, 0 deletions
diff --git a/fig-frontend-client/main.css b/fig-frontend-client/main.css
new file mode 100644
index 0000000..a4b49a3
--- /dev/null
+++ b/fig-frontend-client/main.css
@@ -0,0 +1,49 @@
+@font-face {
+ font-family: "Iosevka Comfy";
+ src: url("assets/iosevka-comfy-regular.ttf") format("truetype");
+}
+
+html, body {
+ overflow: hidden;
+ margin: 0 !important;
+ padding: 0 !important;
+ height: 100%;
+ width: 100%;
+}
+
+body {
+ font-family: "Iosevka Comfy";
+ font-weight: bold;
+ background-color: #050505;
+ color: white;
+ user-select: none;
+ image-rendering: pixelated;
+}
+
+#lcolonq-title {
+ position: absolute;
+ top: 0px;
+ bottom: 0px;
+ left: 0px;
+ right: 0px;
+ text-align: center;
+ font-size: 20vw;
+}
+
+#lcolonq-subtitle {
+ font-size: 5vw;
+}
+
+#lcolonq-canvas {
+ position: absolute;
+ top: 0px;
+ bottom: 0px;
+ left: 0px;
+ right: 0px;
+ width: 100%;
+ height: 100%;
+}
+
+button {
+ color: red;
+}