70 lines
799 B
CSS
70 lines
799 B
CSS
/** Use doom-one theme: */
|
|
body {
|
|
color: #222;
|
|
font-family: sans-serif;
|
|
line-height: 1.5;
|
|
margin: 1rem;
|
|
max-width: 768px;
|
|
background-color: #282c34;
|
|
color: white;
|
|
}
|
|
|
|
h1 {
|
|
color: #4faeef;
|
|
}
|
|
|
|
h2,
|
|
h2 a {
|
|
color: #98be64;
|
|
}
|
|
|
|
header {
|
|
border-bottom: 1px solid #222;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
footer {
|
|
border-top: 1px solid #222;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
a {
|
|
color: #50afef;
|
|
text-decoration: none;
|
|
}
|
|
|
|
img {
|
|
height: auto;
|
|
max-width: 100%;
|
|
}
|
|
|
|
/* menu */
|
|
nav li {
|
|
list-style: none;
|
|
padding-left: 1em;
|
|
}
|
|
|
|
nav li:nth-of-type(1) {
|
|
padding-left: 0;
|
|
}
|
|
|
|
nav ul {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
/* tags */
|
|
ul.tags li {
|
|
list-style: none;
|
|
margin: 0.25em;
|
|
}
|
|
ul.tags li::before {
|
|
content: "#";
|
|
color: #98be64;
|
|
}
|
|
|
|
ul.tags {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|