\ No newline at end of file
diff --git a/assets/css/bottomnav.css b/assets/css/bottomnav.css
deleted file mode 100644
index 020944f..0000000
--- a/assets/css/bottomnav.css
+++ /dev/null
@@ -1,43 +0,0 @@
-
-#bottomnav {
- display: flex;
- justify-content: space-between;
- padding: 32px;
- margin: 0;
- outline: 1px solid black;
-}
-
-#bottomnav span {
- align-self: center;
-}
-
-#bottomnav ul {
- display: flex;
- flex-direction: row;
- list-style: none;
-
- padding: 0;
- gap: 16px;
-}
-
-#bottomnav li {
- padding: 0px;
-}
-
-#bottomnav a {
- color: black;
- background: white;
-
- text-decoration: none;
-
- padding: 4px;
-
- outline: 1px black solid;
-}
-
-#bottomnav a:hover {
- text-decoration: underline;
-
- background: black;
- color: white;
-}
\ No newline at end of file
diff --git a/assets/css/global.css b/assets/css/global.css
index d697ab6..c1ac344 100644
--- a/assets/css/global.css
+++ b/assets/css/global.css
@@ -1,25 +1,21 @@
-@font-face {
- font-family: 'JetBrains-Mono';
- src: url('/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Regular.woff2') format('woff2');
-}
-
:root {
- font-family: 'JetBrains-Mono', sans-serif;
+ --bg-color: #302050;
+ --bg-highlight-color: #453075;
+ --outline: 4px #6040A0 solid;
+ --text-color: white;
+ --font: sans-serif;
+ color: var(--text-color);
+ background-color: var(--bg-color);
}
body {
+ margin: 0;
+ padding: 0;
display: flex;
- flex-direction: column;
- gap: 0;
-
+ gap: 16px;
height: 100dvh;
width: 100dvw;
-
- padding: 0;
- margin: 0;
-}
-
-main {
- flex: 1;
- padding: 32px;
-}
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+}
\ No newline at end of file
diff --git a/assets/css/icon.css b/assets/css/icon.css
deleted file mode 100644
index f330b9c..0000000
--- a/assets/css/icon.css
+++ /dev/null
@@ -1,32 +0,0 @@
-main {
- display: grid;
-
- grid-template-columns: repeat( auto-fit, minmax(256px, 1fr) );
- overflow-x: hidden;
- gap: 32px;
-}
-
-/* @media screen and (min-width: ){
-
-} */
-
-Icon {
- display: flex;
-
- padding: 32px;
- text-align: end;
-
- justify-content: space-between;
- align-items: center;
-
- outline: 1px solid black;
-}
-
-Icon:hover {
- cursor: pointer;
-}
-
-Icon img {
- width: 8rem;
- height: 8rem;
-}
\ No newline at end of file
diff --git a/assets/css/index.css b/assets/css/index.css
index acae973..9913bef 100644
--- a/assets/css/index.css
+++ b/assets/css/index.css
@@ -1,7 +1,25 @@
-main div {
- font-size: 28px;
+main {
+ font-family: var(--font);
+ background: var(--bg-highlight-color);
+ display: flex;
+ padding: 16px;
+ margin-inline: 32px;
+ gap: 8px;
+ outline: var(--outline);
+ flex-direction: column;
}
-main img {
- box-shadow: 0px 0px 8px 4px black;
+main > span {
+ font-size: 32px;
+ text-align: center;
}
+
+main > p {
+ margin: 0;
+ margin-top: 8px;
+ padding: 0;
+}
+
+main > ul {
+ margin: 0;
+}
\ No newline at end of file
diff --git a/assets/css/links.css b/assets/css/links.css
new file mode 100644
index 0000000..8510e7e
--- /dev/null
+++ b/assets/css/links.css
@@ -0,0 +1,19 @@
+#links {
+ display: flex;
+ width: 288px;
+ gap: 16px;
+}
+
+#links > .link {
+ flex: 1;
+ font-family: var(--font);
+ text-decoration: none;
+ color: var(--text-color);
+ outline: var(--outline);
+ padding: 8px;
+ text-align: center;
+}
+
+#links > .link:hover {
+ background: var(--bg-highlight-color);
+}
\ No newline at end of file
diff --git a/assets/css/projects.css b/assets/css/projects.css
new file mode 100644
index 0000000..265522f
--- /dev/null
+++ b/assets/css/projects.css
@@ -0,0 +1,38 @@
+main {
+ margin-inline: 32px;
+ display: flex;
+ justify-content: space-between;
+ gap: 32px;
+ padding: 32px;
+ outline: var(--outline);
+ flex-wrap: wrap;
+ background: var(--bg-highlight-color);
+}
+
+a.container {
+ background: var(--bg-color);
+ font-family: var(--font);
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ gap: 8px;
+ padding: 16px;
+ outline: var(--outline);
+
+ color: var(--text-color);
+ text-decoration: none;
+}
+
+a.container > .title {
+ font-size: 28px;
+ font-weight: 700;
+}
+
+a.container:hover > .title {
+ text-decoration: underline;
+}
+
+a.container > .description {
+ font-size: 18px;
+}
+
diff --git a/assets/images/cashapp.png b/assets/images/cashapp.png
deleted file mode 100644
index 088dafe..0000000
Binary files a/assets/images/cashapp.png and /dev/null differ
diff --git a/assets/images/discord.ico b/assets/images/discord.ico
deleted file mode 100644
index 1a6733f..0000000
Binary files a/assets/images/discord.ico and /dev/null differ
diff --git a/assets/images/tiktok.jpg b/assets/images/tiktok.jpg
deleted file mode 100644
index f0c2853..0000000
Binary files a/assets/images/tiktok.jpg and /dev/null differ
diff --git a/assets/images/tiktok.png b/assets/images/tiktok.png
deleted file mode 100644
index 634020d..0000000
Binary files a/assets/images/tiktok.png and /dev/null differ
diff --git a/assets/jetbrains-mono-font/AUTHORS.txt b/assets/jetbrains-mono-font/AUTHORS.txt
deleted file mode 100755
index 8814941..0000000
--- a/assets/jetbrains-mono-font/AUTHORS.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-# This is the official list of project authors for copyright purposes.
-# This file is distinct from the CONTRIBUTORS.txt file.
-# See the latter for an explanation.
-#
-# Names should be added to this file as:
-# Name or Organization
-
-JetBrains <>
-Philipp Nurullin
-Konstantin Bulenkov
diff --git a/assets/jetbrains-mono-font/OFL.txt b/assets/jetbrains-mono-font/OFL.txt
deleted file mode 100644
index 8bee414..0000000
--- a/assets/jetbrains-mono-font/OFL.txt
+++ /dev/null
@@ -1,93 +0,0 @@
-Copyright 2020 The JetBrains Mono Project Authors (https://github.com/JetBrains/JetBrainsMono)
-
-This Font Software is licensed under the SIL Open Font License, Version 1.1.
-This license is copied below, and is also available with a FAQ at:
-https://scripts.sil.org/OFL
-
-
------------------------------------------------------------
-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
------------------------------------------------------------
-
-PREAMBLE
-The goals of the Open Font License (OFL) are to stimulate worldwide
-development of collaborative font projects, to support the font creation
-efforts of academic and linguistic communities, and to provide a free and
-open framework in which fonts may be shared and improved in partnership
-with others.
-
-The OFL allows the licensed fonts to be used, studied, modified and
-redistributed freely as long as they are not sold by themselves. The
-fonts, including any derivative works, can be bundled, embedded,
-redistributed and/or sold with any software provided that any reserved
-names are not used by derivative works. The fonts and derivatives,
-however, cannot be released under any other type of license. The
-requirement for fonts to remain under this license does not apply
-to any document created using the fonts or their derivatives.
-
-DEFINITIONS
-"Font Software" refers to the set of files released by the Copyright
-Holder(s) under this license and clearly marked as such. This may
-include source files, build scripts and documentation.
-
-"Reserved Font Name" refers to any names specified as such after the
-copyright statement(s).
-
-"Original Version" refers to the collection of Font Software components as
-distributed by the Copyright Holder(s).
-
-"Modified Version" refers to any derivative made by adding to, deleting,
-or substituting -- in part or in whole -- any of the components of the
-Original Version, by changing formats or by porting the Font Software to a
-new environment.
-
-"Author" refers to any designer, engineer, programmer, technical
-writer or other person who contributed to the Font Software.
-
-PERMISSION & CONDITIONS
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of the Font Software, to use, study, copy, merge, embed, modify,
-redistribute, and sell modified and unmodified copies of the Font
-Software, subject to the following conditions:
-
-1) Neither the Font Software nor any of its individual components,
-in Original or Modified Versions, may be sold by itself.
-
-2) Original or Modified Versions of the Font Software may be bundled,
-redistributed and/or sold with any software, provided that each copy
-contains the above copyright notice and this license. These can be
-included either as stand-alone text files, human-readable headers or
-in the appropriate machine-readable metadata fields within text or
-binary files as long as those fields can be easily viewed by the user.
-
-3) No Modified Version of the Font Software may use the Reserved Font
-Name(s) unless explicit written permission is granted by the corresponding
-Copyright Holder. This restriction only applies to the primary font name as
-presented to the users.
-
-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
-Software shall not be used to promote, endorse or advertise any
-Modified Version, except to acknowledge the contribution(s) of the
-Copyright Holder(s) and the Author(s) or with their explicit written
-permission.
-
-5) The Font Software, modified or unmodified, in part or in whole,
-must be distributed entirely under this license, and must not be
-distributed under any other license. The requirement for fonts to
-remain under this license does not apply to any document created
-using the Font Software.
-
-TERMINATION
-This license becomes null and void if any of the above conditions are
-not met.
-
-DISCLAIMER
-THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
-OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/assets/jetbrains-mono-font/fonts/variable/JetBrainsMono-Italic[wght].ttf b/assets/jetbrains-mono-font/fonts/variable/JetBrainsMono-Italic[wght].ttf
deleted file mode 100644
index 5414835..0000000
Binary files a/assets/jetbrains-mono-font/fonts/variable/JetBrainsMono-Italic[wght].ttf and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/variable/JetBrainsMono[wght].ttf b/assets/jetbrains-mono-font/fonts/variable/JetBrainsMono[wght].ttf
deleted file mode 100644
index b60e77f..0000000
Binary files a/assets/jetbrains-mono-font/fonts/variable/JetBrainsMono[wght].ttf and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Bold.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Bold.woff2
deleted file mode 100644
index 4917f43..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Bold.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-BoldItalic.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-BoldItalic.woff2
deleted file mode 100644
index 536d3f7..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-BoldItalic.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraBold.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraBold.woff2
deleted file mode 100644
index 8f88c54..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraBold.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraBoldItalic.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraBoldItalic.woff2
deleted file mode 100644
index d1478ba..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraBoldItalic.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraLight.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraLight.woff2
deleted file mode 100644
index b97239f..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraLight.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraLightItalic.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraLightItalic.woff2
deleted file mode 100644
index be01aac..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ExtraLightItalic.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Italic.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Italic.woff2
deleted file mode 100644
index d60c270..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Italic.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Light.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Light.woff2
deleted file mode 100644
index 6538498..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Light.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-LightItalic.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-LightItalic.woff2
deleted file mode 100644
index 66ca3d2..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-LightItalic.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Medium.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Medium.woff2
deleted file mode 100644
index 669d04c..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Medium.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-MediumItalic.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-MediumItalic.woff2
deleted file mode 100644
index 80cfd15..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-MediumItalic.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Regular.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Regular.woff2
deleted file mode 100644
index 40da427..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Regular.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-SemiBold.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-SemiBold.woff2
deleted file mode 100644
index 5ead7b0..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-SemiBold.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-SemiBoldItalic.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-SemiBoldItalic.woff2
deleted file mode 100644
index c5dd294..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-SemiBoldItalic.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Thin.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Thin.woff2
deleted file mode 100644
index 17270e4..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Thin.woff2 and /dev/null differ
diff --git a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ThinItalic.woff2 b/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ThinItalic.woff2
deleted file mode 100644
index a643215..0000000
Binary files a/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-ThinItalic.woff2 and /dev/null differ
diff --git a/assets/js/global.js b/assets/js/global.js
deleted file mode 100644
index fa1b2d5..0000000
--- a/assets/js/global.js
+++ /dev/null
@@ -1,13 +0,0 @@
-const parser = new DOMParser();
-
-fetch("/assets/components/_bottomnav.html")
-.then(response => response.text())
-.then(text => {
- const bottomNavHTML = parser.parseFromString(text, "text/html");
- const bottomNav = bottomNavHTML.getElementById("bottomnav");
-
- const pathSpan = bottomNav.querySelector("span");
- pathSpan.innerText = pathSpan.innerText.replace("%PATH%", document.location.pathname);
-
- document.body.appendChild(bottomNav);
-});
\ No newline at end of file
diff --git a/assets/js/icon.js b/assets/js/icon.js
deleted file mode 100644
index 737121b..0000000
--- a/assets/js/icon.js
+++ /dev/null
@@ -1,35 +0,0 @@
-const main = document.querySelector("main");
-
-const icons = main.querySelectorAll("Icon");
-
-icons.forEach((icon) => {
- let iconImage = icon.getAttribute("image");
- let link = icon.getAttribute("href");
- let title = icon.getAttribute("title");
-
- console.log(iconImage, link, title);
-
- if (iconImage) {
- let imageElement = document.createElement("img");
-
- imageElement.src = iconImage;
- imageElement.height = 64;
- imageElement.width = 64;
-
- icon.appendChild(imageElement);
- }
-
- if (link) {
- icon.addEventListener('click', (e) => {
- window.open(link, "_blank");
- });
- }
-
- if (title) {
- let titleElement = document.createElement("span");
-
- titleElement.textContent = title;
- icon.appendChild(titleElement);
- }
-
-});
\ No newline at end of file
diff --git a/index.html b/index.html
index 3d1ad6c..8e417c4 100644
--- a/index.html
+++ b/index.html
@@ -3,18 +3,20 @@
- Im bad at naming things
+ Main - Lucielle's Page
-
-
+
-