Rename folder scss with an "_" for Jekyll to ignore it
This commit is contained in:
87
assets/_scss/_sidebar.scss
Normal file
87
assets/_scss/_sidebar.scss
Normal file
@ -0,0 +1,87 @@
|
||||
/* ==========================================================================
|
||||
SIDEBAR
|
||||
========================================================================== */
|
||||
|
||||
.sidebar {
|
||||
@include clearfix();
|
||||
margin-bottom: 2em;
|
||||
padding-bottom: 1em;
|
||||
border-bottom: 1px solid $border-color;
|
||||
@include breakpoint($medium) {
|
||||
@include span(2 of 12);
|
||||
@include suffix(0.25 of 12);
|
||||
border-bottom: none;
|
||||
}
|
||||
@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%;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
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%;
|
||||
}
|
||||
}
|
||||
|
||||
.author__name {
|
||||
margin: 0;
|
||||
font-family: $sans-serif-narrow;
|
||||
font-size: 20px;
|
||||
@include breakpoint($medium) {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.author__bio {
|
||||
margin-bottom: 10px;
|
||||
font-size: 14px;
|
||||
font-style: italic;
|
||||
@include breakpoint($medium) {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.author__urls {
|
||||
a {
|
||||
display: inline-block;
|
||||
margin-bottom: 5px;
|
||||
padding-right: 5px;
|
||||
font-size: 14px;
|
||||
text-decoration: none;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user