From 5e41be39a4fb97e2febb44112ac532c65cbdac88 Mon Sep 17 00:00:00 2001 From: korboduo Date: Fri, 26 Sep 2025 13:07:17 +0900 Subject: [PATCH] optimized and added license --- LICENSE | 13 ++++++++++ index.html | 23 ++++++----------- style.css | 75 +++++++++++++++++++++++++++++------------------------- 3 files changed, 61 insertions(+), 50 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d3165e2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2025 KorboDuo + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. \ No newline at end of file diff --git a/index.html b/index.html index 670c1e5..df97a49 100755 --- a/index.html +++ b/index.html @@ -11,40 +11,33 @@
-

con.cortex

-
- -
-
- -
+
- -
- +
-
-
+
-
-
+ + - + \ No newline at end of file diff --git a/style.css b/style.css index 73ae031..c6227c1 100755 --- a/style.css +++ b/style.css @@ -1,21 +1,41 @@ - +/* Import all font weights and styles */ +@font-face { + font-family: 'SauceCodePro NF'; + src: url('fonts/SauceCodeProNerdFont-Light.ttf') format('truetype'); + font-weight: 300; + font-style: normal; +} @font-face { font-family: 'SauceCodePro NF'; src: url('fonts/SauceCodeProNerdFont-Regular.ttf') format('truetype'); - font-weight: normal; + font-weight: 400; font-style: normal; } - -.nerd-icon { - font-size: 32px; - color: #333; +@font-face { + font-family: 'SauceCodePro NF'; + src: url('fonts/SauceCodeProNerdFont-Italic.ttf') format('truetype'); + font-weight: 400; + font-style: italic; +} +@font-face { + font-family: 'SauceCodePro NF'; + src: url('fonts/SauceCodeProNerdFont-Bold.ttf') format('truetype'); + font-weight: 700; + font-style: normal; +} +@font-face { + font-family: 'SauceCodePro NF'; + src: url('fonts/SauceCodeProNerdFont-BoldItalic.ttf') format('truetype'); + font-weight: 700; + font-style: italic; } +/* Base reset and layout */ body, html { margin: 0; padding: 0; height: 100%; - font-family: Arial, sans-serif; + font-family: 'SauceCodePro NF', monospace; display: flex; flex-direction: column; justify-content: center; @@ -26,7 +46,6 @@ body, html { user-select: none; } - .background { position: fixed; top: 0; @@ -34,41 +53,19 @@ body, html { width: 100%; height: 100%; background: url('images/bg.png') center center / contain no-repeat; - background-size: auto; z-index: 0; pointer-events: none; } .logo-header { - font-family: 'SauceCodePro NF', serif; + font-weight: 400; font-size: 48px; color: white; position: relative; z-index: 1; } -.logo-header img { - max-width: 200px; - width: 40%; - height: auto; - display: block; -} - -.center-image { - position: relative; - z-index: 1; - margin-top: 20px; - resize: none; -} - -.center-image img { - max-width: 250px; - width: 50%; - height: auto; - display: block; - margin: 0 auto; -} - +/* Grid */ .grid-container { display: grid; grid-template-columns: repeat(4, 120px); @@ -80,17 +77,14 @@ body, html { @media (max-width: 768px) { .grid-container { - display: grid; grid-template-columns: repeat(3, 90px); grid-template-rows: repeat(4, 90px); gap: 20px; margin-top: 40px; - z-index: 1; } } .grid-item { - font-family: 'SauceCodePro NF', serif; background: white; display: flex; justify-content: center; @@ -126,3 +120,14 @@ body, html { background: transparent; pointer-events: none; } + +/* Footer */ +.footer { + position: absolute; + bottom: 18px; + font-size: 14px; + color: #ddd; + font-weight: 300; + font-family: 'SauceCodePro NF', monospace; + z-index: 1; +} \ No newline at end of file