datat.fi/_sass/basically-basic/_global.scss

43 lines
948 B
SCSS
Raw Normal View History

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