md-toy-blog
Version:
Very simple Markdown blog: serves your md as html without fancy databases. You will only spend time writing the actual data.
61 lines (48 loc) • 764 B
CSS
body {
/*background-color: #111;
color: white;*/
font-family: monospace;
}
a {
color: #FEE000;
font-weight: 600;
text-decoration: none;
}
#main-container {
padding-top: 15vh;
margin-bottom: 20vh;
}
#main-container > header {
margin-bottom: 3.6em;
}
/* HOME */
#main-container > header > h1 {
text-align: center;
}
#content > .posts-list {
margin: 0 auto;
max-width: 35em;
list-style: none;
}
#content ul > li {
margin-bottom: 1.7em;
}
#content .posts-list li .post-preview {
padding-left: 1em;
}
/* POST */
header a {
text-align: center;
}
#content > h2 {
text-align: center;
margin-bottom: 1.7em;
}
#content > .post {
margin: 0 auto;
max-width: 35em;
}
#content > .page {
margin: 0 auto;
max-width: 35em;
}