hacks-guide-minimal-mistake.../_sass/minimal-mistakes/_sidebar.scss

263 lines
4.7 KiB
SCSS
Raw Normal View History

2016-03-10 22:29:30 -05:00
/* ==========================================================================
SIDEBAR
========================================================================== */
2016-03-20 15:20:33 -04:00
/*
Default
========================================================================== */
2016-03-10 22:29:30 -05:00
.sidebar {
@include clearfix();
margin-bottom: 1em;
-webkit-transform: translate3d(0, 0 , 0);
transform: translate3d(0, 0 , 0);
@include breakpoint(max-width $large) {
/* fix z-index order of follow links */
position: relative;
z-index: 10;
}
2016-03-21 16:36:24 -04:00
2016-03-20 15:20:33 -04:00
@include breakpoint($large) {
float: left;
width: calc(#{$right-sidebar-width-narrow} - 1em);
2016-04-05 16:14:35 -04:00
opacity: 0.75;
-webkit-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
2016-04-05 16:14:35 -04:00
&:hover {
opacity: 1;
}
&.sticky {
overflow-y: auto;
/* calculate height of nav list */
height: calc(100vh - 90px - 2em); // viewport height - approx. masthead height - main content top margin
}
2016-03-10 22:29:30 -05:00
}
2016-03-21 16:36:24 -04:00
@include breakpoint($x-large) {
width: calc(#{$right-sidebar-width} - 1em);
}
h2, h3, h4, h5, h6 {
margin-bottom: 0;
font-family: $sans-serif-narrow;
}
2016-03-21 16:36:24 -04:00
p, li {
2016-03-21 16:36:24 -04:00
font-family: $sans-serif;
font-size: $type-size-6;
2016-03-30 22:20:55 -04:00
line-height: 1.5;
}
2016-03-21 16:36:24 -04:00
img {
width: 100%;
}
2016-03-10 22:29:30 -05:00
}
2016-03-20 15:20:33 -04:00
.sidebar__right {
margin-bottom: 1em;
2016-03-21 16:36:24 -04:00
2016-03-20 15:20:33 -04:00
@include breakpoint($large) {
position: absolute;
top: 0;
right: 0;
width: $right-sidebar-width-narrow;
margin-right: -1 * $right-sidebar-width-narrow;
padding-left: 1em;
z-index: 10;
2016-03-20 15:20:33 -04:00
}
2016-03-21 16:36:24 -04:00
2016-03-20 15:20:33 -04:00
@include breakpoint($x-large) {
width: $right-sidebar-width;
margin-right: -1 * $right-sidebar-width;
2016-03-20 15:20:33 -04:00
}
}
.splash .sidebar__right {
@include breakpoint($large) {
position: relative;
float: right;
margin-right: 0;
}
@include breakpoint($x-large) {
margin-right: 0;
}
}
2016-03-10 22:29:30 -05:00
/*
Author profile and links
========================================================================== */
.author__avatar {
2016-03-20 22:15:43 -04:00
display: table-cell;
vertical-align: top;
width: 36px;
height: 36px;
2016-03-21 16:36:24 -04:00
2016-03-20 15:20:33 -04:00
@include breakpoint($large) {
2016-03-20 22:15:43 -04:00
display: block;
width: auto;
height: auto;
}
2016-03-21 16:36:24 -04:00
img {
max-width: 110px;
border-radius: 50%;
@include breakpoint($large) {
padding: 5px;
border: 1px solid $border-color;
}
}
}
.author__content {
2016-03-20 22:15:43 -04:00
display: table-cell;
vertical-align: top;
padding-left: 15px;
2016-03-25 09:39:18 -04:00
padding-right: 25px;
2016-03-20 22:15:43 -04:00
line-height: 1;
2016-03-21 16:36:24 -04:00
2016-03-20 15:20:33 -04:00
@include breakpoint($large) {
2016-03-20 22:15:43 -04:00
display: block;
width: 100%;
2016-03-20 22:15:43 -04:00
padding-left: 0;
padding-right: 0;
}
}
2016-03-10 22:29:30 -05:00
.author__name {
margin: 0;
2016-03-21 16:36:24 -04:00
2016-03-20 15:20:33 -04:00
@include breakpoint($large) {
margin-top: 10px;
margin-bottom: 10px;
}
2016-03-10 22:29:30 -05:00
}
2016-03-20 22:15:43 -04:00
.sidebar .author__name {
font-family: $sans-serif;
font-size: $type-size-5;
2016-03-20 22:15:43 -04:00
}
2016-03-10 22:29:30 -05:00
.author__bio {
2016-03-25 09:39:18 -04:00
margin: 0;
2016-03-21 16:36:24 -04:00
2016-03-20 15:20:33 -04:00
@include breakpoint($large) {
2016-03-25 09:39:18 -04:00
margin-top: 10px;
margin-bottom: 20px;
}
2016-03-10 22:29:30 -05:00
}
2016-03-21 00:03:46 -04:00
.author__urls-wrapper {
2016-03-20 22:15:43 -04:00
position: relative;
display: table-cell;
vertical-align: middle;
2016-03-20 22:15:43 -04:00
font-family: $sans-serif;
z-index: 10;
2016-03-21 00:03:46 -04:00
position: relative;
cursor: pointer;
2016-03-21 16:36:24 -04:00
2016-03-25 09:39:18 -04:00
li:last-child {
a {
margin-bottom: 0;
}
}
2016-03-20 22:15:43 -04:00
@include breakpoint($large) {
display: block;
}
button {
margin-bottom: 0;
2016-03-21 00:03:46 -04:00
@include breakpoint($large) {
display: none;
}
2016-03-20 22:15:43 -04:00
}
}
.author__urls {
2016-03-20 22:15:43 -04:00
display: none;
position: absolute;
right: 0;
2016-03-21 00:03:46 -04:00
margin-top: 15px;
2016-03-20 22:15:43 -04:00
padding: 10px;
2016-03-21 00:03:46 -04:00
list-style-type: none;
2016-03-20 22:15:43 -04:00
border: 1px solid $border-color;
border-radius: $border-radius;
background: $background-color;
2016-03-21 00:03:46 -04:00
z-index: -1;
box-shadow: 0 2px 4px 0 rgba(#000, 0.16), 0 2px 10px 0 rgba(#000, 0.12);
cursor: default;
2016-03-21 16:36:24 -04:00
&.is--visible {
display: block;
}
2016-03-21 00:03:46 -04:00
@include breakpoint($large) {
display: block;
2016-03-21 12:37:10 -04:00
position: relative;
2016-03-21 00:03:46 -04:00
margin: 0;
padding: 0;
border: 0;
2016-03-21 12:37:10 -04:00
background: transparent;
box-shadow: none;
2016-03-21 00:03:46 -04:00
}
2016-03-21 16:36:24 -04:00
2016-03-21 00:03:46 -04:00
&:before {
display: block;
2016-03-20 22:15:43 -04:00
content: "";
position: absolute;
top: -11px;
left: calc(50% - 10px);
width: 0;
2016-03-20 22:15:43 -04:00
border-style: solid;
border-width: 0 10px 10px;
2016-03-21 00:03:46 -04:00
border-color: $border-color transparent;
z-index: 0;
2016-03-21 16:36:24 -04:00
2016-03-21 00:03:46 -04:00
@include breakpoint($large) {
display: none;
}
2016-03-20 22:15:43 -04:00
}
2016-03-21 16:36:24 -04:00
2016-03-21 00:03:46 -04:00
&:after {
display: block;
2016-03-21 00:03:46 -04:00
content: "";
2016-03-20 22:15:43 -04:00
position: absolute;
top: -10px;
left: calc(50% - 10px);
width: 0;
2016-03-20 22:15:43 -04:00
border-style: solid;
border-width: 0 10px 10px;
border-color: $background-color transparent;
2016-03-21 00:03:46 -04:00
z-index: 1;
2016-03-21 16:36:24 -04:00
2016-03-21 00:03:46 -04:00
@include breakpoint($large) {
display: none;
}
2016-03-20 22:15:43 -04:00
}
2016-03-21 16:36:24 -04:00
li {
white-space: nowrap;
}
a {
2016-03-20 22:15:43 -04:00
display: block;
margin-bottom: 5px;
padding-right: 5px;
2016-03-22 22:59:39 -04:00
padding-top: 2px;
padding-bottom: 2px;
2016-04-05 21:37:16 -04:00
color: inherit;
font-size: $type-size-5;
text-decoration: none;
2016-03-21 16:36:24 -04:00
&:hover {
text-decoration: underline;
}
2016-03-10 22:29:30 -05:00
}
2016-03-15 12:54:50 -04:00
}