aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/style.css
diff options
context:
space:
mode:
authorBlaster4385 <venkatesh@tablaster.dev>2025-01-13 00:40:01 +0530
committerBlaster4385 <venkatesh@tablaster.dev>2025-01-13 01:05:28 +0530
commit2425e3dc2af22c3281122715d60bd4506d48938a (patch)
tree0d1d352f6593f389c880244fa20fa16e47c35253 /frontend/src/style.css
Initial application
Diffstat (limited to 'frontend/src/style.css')
-rw-r--r--frontend/src/style.css28
1 files changed, 28 insertions, 0 deletions
diff --git a/frontend/src/style.css b/frontend/src/style.css
new file mode 100644
index 0000000..4f33297
--- /dev/null
+++ b/frontend/src/style.css
@@ -0,0 +1,28 @@
+@import url(variables.css);
+@import url(fonts.css);
+html {
+ background-color: #282828;
+ text-align: center;
+ color: #ebdbb2;
+}
+
+body {
+ margin: 0;
+ color: #ebdbb2;
+ font-family: "JetBrains Mono", monospace;
+ height: 100vh;
+ width: 100vw;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+}
+
+#app {
+ height: 100vh;
+ width: 100vw;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+}