hacks-guide-minimal-mistake.../assets/_scss/_sidebar.scss

90 lines
1.7 KiB
SCSS
Raw Normal View History

2016-03-11 04:29:30 +01:00
/* ==========================================================================
SIDEBAR
========================================================================== */
.sidebar {
@include clearfix();
margin-bottom: 2em;
padding-bottom: 1em;
border-bottom: 1px solid $border-color;
@include breakpoint($medium) {
@include span(2 of 12);
2016-03-17 20:50:22 +01:00
@include suffix(0.25 of 12);
border-bottom: none;
2016-03-11 04:29:30 +01:00
}
@include breakpoint($x-large) {
padding-right: 0;
}
h2, h3, h4, h5, h6 {
margin-bottom: 0;
font-family: $sans-serif-narrow;
}
p, li {
font-size: 14px;
}
img {
width: 100%;
}
2016-03-11 04:29:30 +01:00
}
/*
Author profile and links
========================================================================== */
.author__avatar {
float: left;
width: 50px;
margin-right: 10px;
@include breakpoint($medium) {
float: none;
width: initial;
}
img {
max-width: 110px;
border-radius: 50%;
}
}
.author__content {
float: right;
width: calc(100% - 60px); // subtract avatar width + any margin/padding
@include breakpoint($medium) {
float: none;
width: 100%;
}
}
2016-03-11 04:29:30 +01:00
.author__name {
margin: 0;
2016-03-11 04:29:30 +01:00
font-family: $sans-serif-narrow;
font-size: 20px;
@include breakpoint($medium) {
margin-top: 10px;
margin-bottom: 10px;
}
2016-03-11 04:29:30 +01:00
}
.author__bio {
margin-bottom: 10px;
font-size: 14px;
2016-03-15 03:00:19 +01:00
font-style: italic;
@include breakpoint($medium) {
margin-bottom: 20px;
}
2016-03-11 04:29:30 +01:00
}
.author__urls {
a {
display: inline-block;
margin-bottom: 5px;
padding-right: 5px;
font-size: 14px;
text-decoration: none;
2016-03-19 01:54:28 +01:00
@include breakpoint($medium) {
display: block;
}
&:hover {
text-decoration: underline;
}
2016-03-11 04:29:30 +01:00
}
2016-03-15 17:54:50 +01:00
}