From 88e2726fc1fc6cec2b9e63526ce4c0a1a04a2e98 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Fri, 1 Mar 2024 18:39:11 -0500 Subject: Add new frontend --- fig-frontend-client/main.css | 49 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 fig-frontend-client/main.css (limited to 'fig-frontend-client/main.css') 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; +} -- cgit v1.2.3