switch to index.md file and use layout from interchange website

This commit is contained in:
2025-05-07 10:07:23 -07:00
parent c67baf638e
commit 2cb7fbb45f
5 changed files with 72 additions and 1 deletions

37
assets/global.css Normal file
View File

@@ -0,0 +1,37 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
background-color: white;
font-family: 'Inter', sans-serif;
color: black;
display: flex;
flex-direction: column;
align-items: center;
}
main {
max-width: 720px;
width: 100%;
}
footer {
max-width: 720px;
width: 100%;
padding-bottom: 64px;
color: dimgray;
}
a {
color: unset;
}
@media screen and (min-width: 720px) {
main {
padding-top: 32px;
}
}
img {
max-width: 100%;
}