adjust file structure

This commit is contained in:
2025-12-03 09:59:01 -06:00
parent 70806b80ee
commit 478d84b0be
8 changed files with 43 additions and 43 deletions

43
assets/css/bottomnav.css Normal file
View File

@@ -0,0 +1,43 @@
#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;
}

25
assets/css/global.css Normal file
View File

@@ -0,0 +1,25 @@
@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;
}
body {
display: flex;
flex-direction: column;
gap: 0;
height: 100dvh;
width: 100dvw;
padding: 0;
margin: 0;
}
main {
flex: 1;
padding: 32px;
}

7
assets/css/index.css Normal file
View File

@@ -0,0 +1,7 @@
main div {
font-size: 28px;
}
main img {
box-shadow: 0px 0px 8px 4px black;
}