8b35dcd2a3
also includes some css updates to handle blog post images some build.sh updates to better handle images some small edits in other places
81 lines
1.1 KiB
CSS
81 lines
1.1 KiB
CSS
/*
|
|
colors:
|
|
text: #ffffff
|
|
green: #38471f
|
|
brown: #47261f
|
|
purple: #471f38
|
|
aqua: #1f473d
|
|
https://www.sessions.edu/color-calculator/
|
|
*/
|
|
|
|
body {
|
|
max-width: 50em;
|
|
margin: 1em auto;
|
|
line-height: 1.5;
|
|
word-wrap: break-word;
|
|
padding: 0 1em;
|
|
background: #38471f;
|
|
color: #ffffff;
|
|
font-family: sans-serif;
|
|
}
|
|
pre {
|
|
background: #1f473d;
|
|
padding: 1em;
|
|
overflow-x: auto;
|
|
word-wrap: normal;
|
|
}
|
|
blockquote {
|
|
background: #1f473d;
|
|
padding: 1em;
|
|
}
|
|
a:link {
|
|
color: #ffffff;
|
|
}
|
|
a:visited {
|
|
color: #ffffff;
|
|
}
|
|
h2, h3, h4, h5, h6 {
|
|
background: #47261f;
|
|
padding: .25em;
|
|
}
|
|
hr {
|
|
border: 1px solid white;
|
|
}
|
|
|
|
/* head */
|
|
.head {
|
|
background: #471f38;
|
|
text-align: center;
|
|
}
|
|
section.head {
|
|
padding: 1em;
|
|
}
|
|
|
|
/* header images */
|
|
.row {
|
|
display: flex;
|
|
padding-top: .5em;
|
|
padding-bottom: .25em;
|
|
}
|
|
.column {
|
|
flex: 33.33%;
|
|
padding-left: .5em;
|
|
padding-right: .5em;
|
|
}
|
|
|
|
/* foot */
|
|
.foot {
|
|
background: #471f38;
|
|
text-align: center;
|
|
}
|
|
section.foot {
|
|
padding: 1em;
|
|
}
|
|
|
|
img.block {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|