Files
brendan-ch.github.io/assets/css/global.css
2025-09-13 15:36:58 -07:00

57 lines
762 B
CSS

@import url('fonts.css');
@import url('navigation.css');
html {
background-color: #f4f4f4;
}
body {
font-family: 'FormaDJRText', sans-serif;
color: black;
display: flex;
flex-direction: column;
align-items: center;
margin: 16px;
}
header {
display: flex;
max-width: 720px;
width: 100%;
position: relative;
z-index: 1001;
}
main {
max-width: 720px;
width: 100%;
}
footer {
max-width: 720px;
width: 100%;
padding-bottom: 64px;
padding-top: 64px;
color: dimgray;
}
a {
color: unset;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'FormaDJRDisplay', sans-serif;
}
@media screen and (min-width: 720px) {
main {
padding-top: 32px;
}
}
img {
max-width: 100%;
}