Browse Source

Start working on project.

Cixo Develop 9 months ago
parent
commit
42ab7e344e
6 changed files with 44 additions and 0 deletions
  1. 0 0
      LICENSE
  2. 17 0
      index.html
  3. 9 0
      theme/app.css
  4. 8 0
      theme/colors.css
  5. 7 0
      theme/font.css
  6. 3 0
      theme/loader.css

+ 0 - 0
LICENSE


+ 17 - 0
index.html

@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+
+<html>
+    <head>
+        <meta charset="UTF-8">
+        <script type="module" src="assets/core.js"></script>
+        <link rel="stylesheet" type="text/css" href="theme/loader.css">
+        <link rel="preconnect" href="https://fonts.googleapis.com">
+        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+        <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
+        <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=apps">
+    </head>
+
+    <body>
+        <div class="app"></div>
+    </body>
+</html>

+ 9 - 0
theme/app.css

@@ -0,0 +1,9 @@
+body {
+    margin: 0px;
+    padding: 0px;
+}
+
+.app { 
+    width: 100%;
+    height: 100%;
+}

+ 8 - 0
theme/colors.css

@@ -0,0 +1,8 @@
+body {
+    --background-color-dark: #120309;
+    --font-color-dark: #E0E2DB;
+    --background-color-light: #E0E2DB;
+    --font-color-light: #120309;
+    --primary-color: #307351;
+    --secondary-color: #53599A;
+}

+ 7 - 0
theme/font.css

@@ -0,0 +1,7 @@
+.app {
+    font-family: "Noto Sans", sans-serif;
+    font-optical-sizing: auto;
+    font-weight: 200;
+    font-style: normal;
+    font-variation-settings: "wdth" 100;
+}

+ 3 - 0
theme/loader.css

@@ -0,0 +1,3 @@
+@import url("./colors.css");
+@import url("./app.css");
+@import url("./font.css");