2023-11-22 04:17:13 +00:00
|
|
|
/*
|
|
|
|
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;
|
2024-01-15 01:31:16 +00:00
|
|
|
overflow-wrap: break-word;
|
2023-11-22 04:17:13 +00:00
|
|
|
padding: 0 1em;
|
|
|
|
background: #38471f;
|
|
|
|
color: #ffffff;
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
pre {
|
|
|
|
background: #1f473d;
|
|
|
|
padding: 1em;
|
|
|
|
overflow-x: auto;
|
2024-01-15 01:31:16 +00:00
|
|
|
overflow-wrap: normal;
|
2023-11-22 04:17:13 +00:00
|
|
|
}
|
2023-12-09 22:27:43 +00:00
|
|
|
blockquote {
|
|
|
|
background: #1f473d;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
2023-11-22 04:17:13 +00:00
|
|
|
a:link {
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
a:visited {
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
h2, h3, h4, h5, h6 {
|
|
|
|
background: #47261f;
|
|
|
|
padding: .25em;
|
|
|
|
}
|
2023-12-09 22:27:43 +00:00
|
|
|
hr {
|
|
|
|
border: 1px solid white;
|
|
|
|
}
|
2023-11-22 04:17:13 +00:00
|
|
|
|
|
|
|
/* head */
|
|
|
|
.head {
|
|
|
|
background: #471f38;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-05-01 23:18:08 +00:00
|
|
|
div.head {
|
2023-11-22 04:17:13 +00:00
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
2023-11-26 01:51:17 +00:00
|
|
|
/* header images */
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
padding-top: .5em;
|
|
|
|
padding-bottom: .25em;
|
|
|
|
}
|
|
|
|
.column {
|
|
|
|
flex: 33.33%;
|
|
|
|
padding-left: .5em;
|
|
|
|
padding-right: .5em;
|
|
|
|
}
|
|
|
|
|
2023-11-22 04:17:13 +00:00
|
|
|
/* foot */
|
|
|
|
.foot {
|
|
|
|
background: #471f38;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-05-01 23:18:08 +00:00
|
|
|
div.foot {
|
2024-05-11 01:33:47 +00:00
|
|
|
padding: .1em;
|
2023-11-22 04:17:13 +00:00
|
|
|
}
|
2023-12-28 04:37:31 +00:00
|
|
|
|
|
|
|
img.block {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|