Created first version of homepage

This commit is contained in:
Bo⋆˚✿˖° 2024-09-03 23:26:58 +02:00
parent 3457338917
commit 7409e7ae81
5 changed files with 107 additions and 1 deletions

BIN
assets/fonts/jbmono.woff2 Normal file

Binary file not shown.

0
assets/js/index.js Normal file
View file

57
assets/style.css Normal file
View file

@ -0,0 +1,57 @@
/*
Pixelated.sh
Copyright (c) 2024 FreedTapestry21
*/
@font-face {
font-family: 'Jetbrains Mono';
src: local(''),
url('./fonts/jbmono.woff2')
}
:root {
--accent-color: #e7c6ff;
--text-color: #b8c0ff;
--background-color: #000000;
}
html {
font-family: 'Jetbrains Mono';
}
body {
background-color: var(--background-color);
}
p {
font-size: 14px;
color: var(--text-color);
}
a {
font-weight: bolder;
color: var(--text-color);
text-decoration: none;
}
a:hover {
background-color: var(--text-color);
color: var(--background-color);
}
footer {
text-align: center;
}
footer p {
font-size: 8px;
}
/* Custom classes */
.invert {
background-color: var(--text-color);
color: var(--background-color);
}