create base page
This commit is contained in:
72
assets/index.css
Normal file
72
assets/index.css
Normal file
@@ -0,0 +1,72 @@
|
||||
@font-face {
|
||||
font-family: 'JetBrains-Mono';
|
||||
src: url('./jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Regular.woff2') format('woff2');
|
||||
}
|
||||
|
||||
:root {
|
||||
font-family: 'JetBrains-Mono', sans-serif;
|
||||
}
|
||||
|
||||
/* * {
|
||||
outline: 1px black solid;
|
||||
} */
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
|
||||
height: 100dvh;
|
||||
width: 100dvw;
|
||||
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
main {
|
||||
flex: 1;
|
||||
padding: 32px;
|
||||
}
|
||||
|
||||
main div {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
main img {
|
||||
box-shadow: 0px 0px 8px 4px black;
|
||||
}
|
||||
|
||||
#bottomnav {
|
||||
display: flex;
|
||||
/* width: 100dvw; */
|
||||
list-style: none;
|
||||
padding: 32px;
|
||||
margin: 0;
|
||||
|
||||
gap: 16px;
|
||||
|
||||
outline: 1px solid black;
|
||||
}
|
||||
|
||||
#bottomnav li {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
#bottomnav a {
|
||||
color: black;
|
||||
background: white;
|
||||
|
||||
text-decoration: none;
|
||||
|
||||
padding: 4px;
|
||||
|
||||
outline: 1px black solid;
|
||||
}
|
||||
|
||||
#bottomnav a:hover {
|
||||
cursor: not-allowed;
|
||||
text-decoration: underline;
|
||||
|
||||
background: black;
|
||||
color: white;
|
||||
}
|
||||
0
assets/index.js
Normal file
0
assets/index.js
Normal file
Reference in New Issue
Block a user