55 lines
768 B
CSS
55 lines
768 B
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;
|
||
|
}
|
||
|
a:link {
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
a:visited {
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
h2, h3, h4, h5, h6 {
|
||
|
background: #47261f;
|
||
|
padding: .25em;
|
||
|
}
|
||
|
|
||
|
/* head */
|
||
|
.head {
|
||
|
background: #471f38;
|
||
|
text-align: center;
|
||
|
}
|
||
|
section.head {
|
||
|
padding: 1em;
|
||
|
}
|
||
|
|
||
|
/* foot */
|
||
|
.foot {
|
||
|
background: #471f38;
|
||
|
text-align: center;
|
||
|
}
|
||
|
section.foot {
|
||
|
padding: 1em;
|
||
|
}
|