zola-water/sass/style.scss

56 lines
871 B
SCSS
Raw Normal View History

2020-04-19 00:59:08 +00:00
body {
max-width: none; // Override water.css
}
.nav-menu {
font-weight: bold;
> a { margin: 0 1rem; } // Spacing entries
padding: 0.5rem; // Leaving background space around entries
}
header {
text-align: center;
font-weight: bold;
}
article > div:first-child > h1, section > h1:first-child {
text-align: center;
font-size: 2.6em;
2020-04-24 13:46:52 +00:00
@media screen and (max-width: 64em) {
font-size: 1.3em;
}
}
article > div:first-child {
text-align: center;
}
.read-more {
text-align: center;
display: block;
font-weight: bold;
}
.pagination {
margin-top: 1rem;
text-align: center;
> a {
font-weight: bolder;
font-variant: small-caps;
padding: 0 2rem;
}
}
main {
2020-04-19 00:59:08 +00:00
margin: 1rem auto;
}
.source {
text-align: center;
font-weight: bold;
}
2020-04-24 13:46:52 +00:00
pre {
overflow-x: auto;
}