Adjust sidebar styling

- Disable sticky
- Show for small screens and adjust accordingly
This commit is contained in:
Michael Rose 2016-03-11 16:36:41 -05:00
parent 53b6bf549c
commit 2c2d5fb616
4 changed files with 35 additions and 17 deletions

View file

@ -34,7 +34,11 @@
font-family: $serif; font-family: $serif;
} }
.page__content {} .page__content {
p, li {
font-size: 16px;
}
}
.page__hero { .page__hero {
position: relative; position: relative;

View file

@ -3,10 +3,10 @@
========================================================================== */ ========================================================================== */
.sidebar { .sidebar {
display: none; @include grid(12,10);
img { @include prefix(12,1);
width: 100%; @include suffix(12,1);
} margin-bottom: 1em;
@include breakpoint($small) { @include breakpoint($small) {
display: block; display: block;
@include grid(12,2); @include grid(12,2);
@ -17,6 +17,15 @@
@include grid(12,1.5); @include grid(12,1.5);
@include prefix(12,2); @include prefix(12,2);
} }
h2, h3, h4, h5, h6 {
font-family: $sans-serif-narrow;
}
p, li {
font-size: 14px;
}
img {
width: 100%;
}
} }
/* /*
@ -26,39 +35,44 @@
.author__name { .author__name {
margin-bottom: 0; margin-bottom: 0;
font-family: $sans-serif-narrow; font-family: $sans-serif-narrow;
font-size: 18px;
@include breakpoint($small) { @include breakpoint($small) {
margin-top: 10px; margin-top: 10px;
margin-bottom: 10px; margin-bottom: 10px;
font-size: 24px;
} }
} }
.author__bio { .author__bio {
font-size: 80%; display: none;
font-style: italic;
@include breakpoint($small) { @include breakpoint($small) {
display: block;
margin-bottom: 20px; margin-bottom: 20px;
font-size: 80%;
font-style: italic;
} }
} }
.author__avatar { .author__avatar {
max-width: 110px; display: none;
border-radius: 50%; @include breakpoint($small) {
max-width: 110px;
border-radius: 50%;
}
} }
.author__social-url { .author__social-url {
display: block; display: inline-block;
margin-bottom: 5px; margin-bottom: 5px;
padding-right: 5px;
font-size: 14px; font-size: 14px;
color: #000; color: #000;
text-decoration: none; text-decoration: none;
&:visited { @include breakpoint($small) {
color: #000; display: block;
} }
&:hover { &:hover {
text-decoration: underline; text-decoration: underline;
} }
.fa {
margin-right: 5px;
}
} }
.author__name, .author__name,

View file

@ -35,7 +35,7 @@ layout: compress
{% endif %} {% endif %}
<div id="main" role="main"> <div id="main" role="main">
<div class="sidebar sticky"> <div class="sidebar">
{% if page.author_profile %}{% include author-profile.html %}{% endif %} {% if page.author_profile %}{% include author-profile.html %}{% endif %}
{% if page.sidebar %} {% if page.sidebar %}
{% for s in page.sidebar %} {% for s in page.sidebar %}

File diff suppressed because one or more lines are too long