Improve sidebar styling for small screens

This commit is contained in:
Michael Rose 2016-03-18 11:58:56 -04:00
parent dc20be33a0
commit 17a6afcd35
3 changed files with 131 additions and 94 deletions

View file

@ -4,75 +4,83 @@
<div itemscope itemtype="http://schema.org/Person"> <div itemscope itemtype="http://schema.org/Person">
{% if author.avatar contains "http" %} <div class="author__avatar">
<img src="{{ author.avatar }}" class="author__avatar" alt="{{ author.name }}"> {% if author.avatar contains "http" %}
{% else %} <img src="{{ author.avatar }}" alt="{{ author.name }}">
<img src="{{ author.avatar | prepend: "/images/" | prepend: base_path }}" class="author__avatar" alt="{{ author.name }}"> {% else %}
{% endif %} <img src="{{ author.avatar | prepend: "/images/" | prepend: base_path }}" class="author__avatar" alt="{{ author.name }}">
{% endif %}
</div>
<h3 class="author__name">{{ author.name }}</h3> <div class="author__content">
{% if author.bio %}<p class="author__bio">{{ author.bio }}</p>{% endif %} <h3 class="author__name">{{ author.name }}</h3>
{% if author.uri %}
<a href="{{ author.uri }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-globe"></i>Website</a> {% if author.bio %}<p class="author__bio">{{ author.bio }}</p>{% endif %}
{% endif %}
{% if author.email %} <div class="author__urls">
<a href="mailto:{{ author.email }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-envelope-square"></i> Email</a> {% if author.uri %}
{% endif %} <a href="{{ author.uri }}" target="_blank"><i class="fa fa-fw fa-globe"></i>Website</a>
{% if author.twitter %} {% endif %}
<a href="http://twitter.com/{{ author.twitter }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-twitter-square"></i> Twitter</a> {% if author.email %}
{% endif %} <a href="mailto:{{ author.email }}" target="_blank"><i class="fa fa-fw fa-envelope-square"></i> Email</a>
{% if author.facebook %} {% endif %}
<a href="http://facebook.com/{{ author.facebook }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-facebook-square"></i> Facebook</a> {% if author.twitter %}
{% endif %} <a href="http://twitter.com/{{ author.twitter }}" target="_blank"><i class="fa fa-fw fa-twitter-square"></i> Twitter</a>
{% if author.google_plus %} {% endif %}
<a href="http://plus.google.com/+{{ author.google_plus }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-google-plus-square"></i> Google+</a> {% if author.facebook %}
{% endif %} <a href="http://facebook.com/{{ author.facebook }}" target="_blank"><i class="fa fa-fw fa-facebook-square"></i> Facebook</a>
{% if author.linkedin %} {% endif %}
<a href="http://linkedin.com/in/{{ author.linkedin }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-linkedin-square"></i> LinkedIn</a> {% if author.google_plus %}
{% endif %} <a href="http://plus.google.com/+{{ author.google_plus }}" target="_blank"><i class="fa fa-fw fa-google-plus-square"></i> Google+</a>
{% if author.xing %} {% endif %}
<a href="http://www.xing.com/profile/{{ author.xing }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-xing-square"></i> XING</a> {% if author.linkedin %}
{% endif %} <a href="http://linkedin.com/in/{{ author.linkedin }}" target="_blank"><i class="fa fa-fw fa-linkedin-square"></i> LinkedIn</a>
{% if author.instagram %} {% endif %}
<a href="http://instagram.com/{{ author.instagram }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-instagram"></i> Instagram</a> {% if author.xing %}
{% endif %} <a href="http://www.xing.com/profile/{{ author.xing }}" target="_blank"><i class="fa fa-fw fa-xing-square"></i> XING</a>
{% if author.tumblr %} {% endif %}
<a href="http://{{ author.tumblr }}.tumblr.com" class="author__social-url" target="_blank"><i class="fa fa-fw fa-tumblr-square"></i> Tumblr</a> {% if author.instagram %}
{% endif %} <a href="http://instagram.com/{{ author.instagram }}" target="_blank"><i class="fa fa-fw fa-instagram"></i> Instagram</a>
{% if author.github %} {% endif %}
<a href="http://github.com/{{ author.github }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-github"></i> Github</a> {% if author.tumblr %}
{% endif %} <a href="http://{{ author.tumblr }}.tumblr.com" target="_blank"><i class="fa fa-fw fa-tumblr-square"></i> Tumblr</a>
{% if author.stackoverflow %} {% endif %}
<a href="http://stackoverflow.com/users/{{ author.stackoverflow }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-stack-overflow"></i> Stackoverflow</a> {% if author.github %}
{% endif %} <a href="http://github.com/{{ author.github }}" target="_blank"><i class="fa fa-fw fa-github"></i> Github</a>
{% if author.lastfm %} {% endif %}
<a href="http://lastfm.com/user/{{ author.lastfm }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-music"></i> Last.fm</a> {% if author.stackoverflow %}
{% endif %} <a href="http://stackoverflow.com/users/{{ author.stackoverflow }}" target="_blank"><i class="fa fa-fw fa-stack-overflow"></i> Stackoverflow</a>
{% if author.dribbble %} {% endif %}
<a href="http://dribbble.com/{{ author.dribbble }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-dribbble"></i> Dribbble</a> {% if author.lastfm %}
{% endif %} <a href="http://lastfm.com/user/{{ author.lastfm }}" target="_blank"><i class="fa fa-fw fa-music"></i> Last.fm</a>
{% if author.pinterest %} {% endif %}
<a href="http://www.pinterest.com/{{ author.pinterest }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-pinterest"></i> Pinterest</a> {% if author.dribbble %}
{% endif %} <a href="http://dribbble.com/{{ author.dribbble }}" target="_blank"><i class="fa fa-fw fa-dribbble"></i> Dribbble</a>
{% if author.foursquare %} {% endif %}
<a href="http://foursquare.com/{{ author.foursquare }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-foursquare"></i> Foursquare</a> {% if author.pinterest %}
{% endif %} <a href="http://www.pinterest.com/{{ author.pinterest }}" target="_blank"><i class="fa fa-fw fa-pinterest"></i> Pinterest</a>
{% if author.steam %} {% endif %}
<a href="http://steamcommunity.com/id/{{ author.steam }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-steam-square"></i> Steam</a> {% if author.foursquare %}
{% endif %} <a href="http://foursquare.com/{{ author.foursquare }}" target="_blank"><i class="fa fa-fw fa-foursquare"></i> Foursquare</a>
{% if author.youtube %} {% endif %}
<a href="https://youtube.com/user/{{ author.youtube }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-youtube-square"></i> Youtube</a> {% if author.steam %}
{% endif %} <a href="http://steamcommunity.com/id/{{ author.steam }}" target="_blank"><i class="fa fa-fw fa-steam-square"></i> Steam</a>
{% if author.soundcloud %} {% endif %}
<a href="http://soundcloud.com/{{ author.soundcloud }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-soundcloud"></i> Soundcloud</a> {% if author.youtube %}
{% endif %} <a href="https://youtube.com/user/{{ author.youtube }}" target="_blank"><i class="fa fa-fw fa-youtube-square"></i> Youtube</a>
{% if author.weibo %} {% endif %}
<a href="http://www.weibo.com/{{ author.weibo }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-weibo"></i> Weibo</a> {% if author.soundcloud %}
{% endif %} <a href="http://soundcloud.com/{{ author.soundcloud }}" target="_blank"><i class="fa fa-fw fa-soundcloud"></i> Soundcloud</a>
{% if author.flickr %} {% endif %}
<a href="http://www.flickr.com/{{ author.flickr }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-flickr"></i> Flickr</a> {% if author.weibo %}
{% endif %} <a href="http://www.weibo.com/{{ author.weibo }}" target="_blank"><i class="fa fa-fw fa-weibo"></i> Weibo</a>
{% if author.codepen %} {% endif %}
<a href="http://codepen.io/{{ author.codepen }}" class="author__social-url" target="_blank"><i class="fa fa-fw fa-codepen"></i> CodePen</a> {% if author.flickr %}
{% endif %} <a href="http://www.flickr.com/{{ author.flickr }}" target="_blank"><i class="fa fa-fw fa-flickr"></i> Flickr</a>
{% endif %}
{% if author.codepen %}
<a href="http://codepen.io/{{ author.codepen }}" target="_blank"><i class="fa fa-fw fa-codepen"></i> CodePen</a>
{% endif %}
</div>
</div>
</div> </div>

File diff suppressed because one or more lines are too long

View file

@ -3,16 +3,20 @@
========================================================================== */ ========================================================================== */
.sidebar { .sidebar {
@include clearfix();
margin-bottom: 2em;
padding-bottom: 1em;
border-bottom: 1px solid $border-color;
@include breakpoint($medium) { @include breakpoint($medium) {
display: block;
margin-bottom: 1em;
@include span(2 of 12); @include span(2 of 12);
@include suffix(0.25 of 12); @include suffix(0.25 of 12);
border-bottom: none;
} }
@include breakpoint($x-large) { @include breakpoint($x-large) {
padding-right: 0; padding-right: 0;
} }
h2, h3, h4, h5, h6 { h2, h3, h4, h5, h6 {
margin-bottom: 0;
font-family: $sans-serif-narrow; font-family: $sans-serif-narrow;
} }
p, li { p, li {
@ -27,32 +31,57 @@
Author profile and links 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 { .author__name {
margin-top: 10px; margin: 0;
margin-bottom: 10px;
font-family: $sans-serif-narrow; font-family: $sans-serif-narrow;
font-size: 24px; font-size: 20px;
@include breakpoint($medium) {
margin-top: 10px;
margin-bottom: 10px;
}
} }
.author__bio { .author__bio {
margin-bottom: 20px; margin-bottom: 10px;
font-size: 80%;
font-style: italic;
}
.author__avatar {
max-width: 110px;
border-radius: 50%;
}
.author__social-url {
display: block;
margin-bottom: 5px;
padding-right: 5px;
font-size: 14px; font-size: 14px;
color: #000; font-style: italic;
text-decoration: none; @include breakpoint($medium) {
&:hover { margin-bottom: 20px;
text-decoration: underline; }
}
.author__urls {
a {
display: inline-block;
margin-bottom: 5px;
padding-right: 5px;
font-size: 14px;
text-decoration: none;
&:hover {
text-decoration: underline;
}
} }
} }