52 lines
843 B
CSS
52 lines
843 B
CSS
body, .pure-g [class*="pure-u"] {
|
|
font-family: 'Lato', sans-serif;
|
|
background-color: #F6F8FF;
|
|
line-height: 1.3;
|
|
color: #222222;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
header {
|
|
color: #08415c;
|
|
border-bottom: 1px solid #222222;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 1.5em;
|
|
}
|
|
|
|
a {
|
|
color: #D9658D;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
code {
|
|
font-weight: bold;
|
|
font-size: 95%;
|
|
}
|
|
|
|
|
|
/* from https://css-tricks.com/snippets/css/triangular-list-bullets/ */
|
|
ul {
|
|
margin: 0.75em 0;
|
|
padding: 0 1em 0 1.1em;
|
|
list-style: none;
|
|
}
|
|
li:before {
|
|
content: "";
|
|
border-color: transparent #222222;
|
|
border-style: solid;
|
|
border-width: 0.35em 0 0.35em 0.45em;
|
|
display: block;
|
|
height: 0;
|
|
width: 0;
|
|
left: -1em;
|
|
top: 0.9em;
|
|
position: relative;
|
|
}
|
|
|