2017-03-10 21:37:14 +02:00
|
|
|
/* ==========================================================================
|
|
|
|
Site-wide
|
|
|
|
========================================================================== */
|
2017-03-07 23:12:17 +02:00
|
|
|
|
|
|
|
.site-title {
|
|
|
|
margin: 0;
|
2017-03-13 21:23:04 +02:00
|
|
|
padding: 1.8125rem 1rem;
|
2017-03-10 21:37:14 +02:00
|
|
|
padding-right: calc(10vw + #{$navicon-width}); /* make room for sidebar toggle */
|
2017-03-07 23:12:17 +02:00
|
|
|
font-family: $base-font-family;
|
|
|
|
@include fluid-type($min-vw, $max-vw, 20px, 24px);
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1;
|
|
|
|
|
|
|
|
@include breakpoint($medium) {
|
|
|
|
padding-left: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint($large) {
|
|
|
|
padding-left: 5vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2017-03-13 21:23:04 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-03-07 23:12:17 +02:00
|
|
|
color: $text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2017-03-13 21:23:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-image {
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|