Compare commits
8 Commits
c334466ef7
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dd337e04e0 | ||
| 5e41be39a4 | |||
| fb51d1064c | |||
| d3ddc72ed2 | |||
|
|
2ff28605bf | ||
|
|
fd1e7df85d | ||
|
|
d2a382ffd9 | ||
|
|
320fca53cb |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
files/
|
||||
13
LICENSE
Normal file
13
LICENSE
Normal file
@@ -0,0 +1,13 @@
|
||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||
Version 2, December 2004
|
||||
|
||||
Copyright (C) 2025 KorboDuo <korboduo@gmail.com>
|
||||
|
||||
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.
|
||||
BIN
favicon.png
Executable file
BIN
favicon.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
BIN
fonts/SauceCodeProNerdFont-Black.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-Black.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-BlackItalic.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-BlackItalic.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-Bold.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-Bold.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-BoldItalic.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-BoldItalic.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-ExtraLight.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-ExtraLight.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-ExtraLightItalic.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-ExtraLightItalic.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-Italic.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-Italic.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-Light.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-Light.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-LightItalic.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-LightItalic.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-Medium.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-Medium.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-MediumItalic.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-MediumItalic.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-Regular.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-Regular.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-SemiBold.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-SemiBold.ttf
Executable file
Binary file not shown.
BIN
fonts/SauceCodeProNerdFont-SemiBoldItalic.ttf
Executable file
BIN
fonts/SauceCodeProNerdFont-SemiBoldItalic.ttf
Executable file
Binary file not shown.
BIN
fonts/SymbolsNerdFont-Regular.ttf
Executable file
BIN
fonts/SymbolsNerdFont-Regular.ttf
Executable file
Binary file not shown.
BIN
fonts/SymbolsNerdFontMono-Regular.ttf
Executable file
BIN
fonts/SymbolsNerdFontMono-Regular.ttf
Executable file
Binary file not shown.
BIN
images/bg.png
Executable file
BIN
images/bg.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 186 KiB |
43
index.html
Executable file
43
index.html
Executable file
@@ -0,0 +1,43 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>con.cortex</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="icon" type="image/png" href="favicon.png">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="background"></div>
|
||||
|
||||
<header class="logo-header">
|
||||
<p><span style="color: #FF4B4B;">con.</span>cortex</p>
|
||||
</header>
|
||||
|
||||
<div class="grid-container">
|
||||
<div class="grid-item">
|
||||
<a href="https://www.youtube.com/@KorboDuo" class="grid-link" style="color: #FF4B4B;"></a>
|
||||
</div>
|
||||
<div class="grid-item">
|
||||
<a href="https://github.com/korboduo" class="grid-link"></a>
|
||||
</div>
|
||||
<div class="grid-item"></div>
|
||||
<div class="grid-item">
|
||||
<a href="https://www.twitch.tv/korboduo" class="grid-link"></a>
|
||||
</div>
|
||||
<div class="grid-item"></div>
|
||||
<div class="grid-item">
|
||||
<a href="https://korboduo.itch.io/" class="grid-link" style="color: #FF4B4B;"></a>
|
||||
</div>
|
||||
<div class="grid-item">
|
||||
<a href="https://www.youtube.com/@concortex" class="grid-link"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
KorboDuo © 2025 — Licensed under <a href="LICENSE" target="_blank">WTFPL</a>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
133
style.css
Executable file
133
style.css
Executable file
@@ -0,0 +1,133 @@
|
||||
/* 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: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
@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: 'SauceCodePro NF', monospace;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
background: #323232;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.background {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background: url('images/bg.png') center center / cover no-repeat;
|
||||
height: 100vh;
|
||||
width: 100%;
|
||||
z-index: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.logo-header {
|
||||
font-weight: 400;
|
||||
font-size: 48px;
|
||||
color: white;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* Grid */
|
||||
.grid-container {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 120px);
|
||||
grid-template-rows: repeat(3, 120px);
|
||||
gap: 40px;
|
||||
margin-top: 20px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.grid-container {
|
||||
grid-template-columns: repeat(3, 90px);
|
||||
grid-template-rows: repeat(4, 90px);
|
||||
gap: 20px;
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.grid-item {
|
||||
background: white;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 12px;
|
||||
font-size: 38px;
|
||||
color: #333;
|
||||
transition: transform 0.2s, background 0.2s;
|
||||
}
|
||||
|
||||
.grid-item:hover {
|
||||
transform: scale(0.9);
|
||||
background: #f0f0f0;
|
||||
}
|
||||
|
||||
.grid-item a.grid-link {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
font-size: 38px;
|
||||
transform: translateX(-2px);
|
||||
}
|
||||
|
||||
.grid-item:hover a.grid-link {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.grid-item:empty {
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user