171 lines
2.7 KiB
CSS
171 lines
2.7 KiB
CSS
/*
|
|
Kyler Olsen
|
|
Oct 2025
|
|
*/
|
|
|
|
main {
|
|
padding-left: 20vw;
|
|
padding-right: 20vw;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
font-family:
|
|
'Lucida Sans',
|
|
'Lucida Sans Regular',
|
|
'Lucida Grande',
|
|
'Lucida Sans Unicode',
|
|
Geneva,
|
|
Verdana,
|
|
sans-serif;
|
|
/* margin: 16px 64px; */
|
|
margin-top: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
color: #375899;
|
|
}
|
|
|
|
/* p {
|
|
font-size: 18px;
|
|
margin-top: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
ul, ol {
|
|
display: block;
|
|
font-size: 18px;
|
|
margin-top: 16px;
|
|
margin-bottom: 16px;
|
|
} */
|
|
|
|
code {
|
|
font-family: 'Consolas', 'Courier New', Courier, monospace;
|
|
background-color: #dddddd;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
border-radius: 3px;
|
|
break-inside: avoid;
|
|
}
|
|
|
|
pre > code {
|
|
background-color: unset;
|
|
padding: unset;
|
|
border-radius: unset;
|
|
}
|
|
|
|
pre {
|
|
border-color: black;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-radius: 3px;
|
|
padding: 4px;
|
|
background-color: #eeeeee;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
blockquote {
|
|
border-color: black;
|
|
border-left-color: #001847;
|
|
border-width: 1px;
|
|
border-left-width: 8px;
|
|
border-style: solid;
|
|
border-radius: 3px;
|
|
padding-left: 8px;
|
|
background-color: #9cbdff;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
padding: 0;
|
|
padding-left: 20vw;
|
|
padding-right: 20vw;
|
|
}
|
|
|
|
header > div {
|
|
display: grid;
|
|
grid-template-areas: 't l n';
|
|
grid-template-columns: 1fr 2fr 1fr;
|
|
grid-template-rows: 1fr;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
header > div > .title {
|
|
text-align: left;
|
|
grid-area: t;
|
|
}
|
|
|
|
header > div >.logo > a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
header > div > .logo {
|
|
margin: 0;
|
|
grid-area: l;
|
|
}
|
|
|
|
header > div > .logo > a > span {
|
|
display: inline-block;
|
|
width: 4px;
|
|
}
|
|
|
|
header > div > .nav {
|
|
text-align: right;
|
|
grid-area: n;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
padding: 8px;
|
|
padding-left: 20vw;
|
|
padding-right: 20vw;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
body {
|
|
font-size: 18px;
|
|
}
|
|
|
|
header {
|
|
padding-left: 5vw;
|
|
padding-right: 5vw;
|
|
}
|
|
|
|
main {
|
|
padding-left: 5vw;
|
|
padding-right: 5vw;
|
|
}
|
|
|
|
footer {
|
|
padding-left: 5vw;
|
|
padding-right: 5vw;
|
|
}
|
|
|
|
ol, ul {
|
|
padding-left: 24px;
|
|
}
|
|
|
|
blockquote {
|
|
margin-left: 24px;
|
|
margin-right: 24px;
|
|
}
|
|
|
|
header > div {
|
|
grid-template-areas: 'l' 't' 'n';
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: 2fr 1fr 1fr;
|
|
justify-content: center;
|
|
}
|
|
|
|
header > div > .title, header > div > .nav {
|
|
text-align: center;
|
|
margin-top: 4px;
|
|
margin-bottom: 4px;
|
|
}
|
|
}
|