hugo-PaperMod/assets/css/main.css

53 lines
923 B
CSS
Raw Normal View History

2020-07-21 10:50:35 +02:00
/* Main
-------------------------------------------------- */
.main {
position: relative;
min-height: calc(100vh - var(--header-height) - var(--footer-height));
max-width: calc(var(--main-width) + var(--gap) * 2);
margin: auto;
2020-07-21 10:50:35 +02:00
padding: var(--gap);
}
@media screen and (max-width: 400px) {
.main {
min-height: calc(100vh - var(--header-height) - var(--footer-height) - 24px);
}
}
2020-07-21 10:50:35 +02:00
.page-header {
margin-bottom: 24px;
}
.page-header h1 {
font-size: 40px;
}
.pagination {
display: flex;
}
.pagination a {
color: var(--theme);
font-size: 13px;
line-height: 36px;
background: var(--primary);
border-radius: calc(36px / 2);
padding: 0 16px;
2020-07-21 10:50:35 +02:00
}
.pagination .next {
margin-left: auto;
}
.social-icons {
padding: 12px 0;
}
.social-icons a:not(:last-of-type) {
margin-right: 12px;
}
.social-icons a svg {
height: 26px;
width: 26px;
}