Run through Autoprefixer

This commit is contained in:
Michael Rose 2017-02-14 12:42:50 -05:00
parent 1cbac04650
commit a488a6b0fe
6 changed files with 31 additions and 31 deletions

View file

@ -15,10 +15,8 @@
@include container; @include container;
@include clearfix; @include clearfix;
display: -webkit-box; display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
-webkit-box-pack: justify; -webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between; justify-content: space-between;
padding: 1em 1em 1em; padding: 1em 1em 1em;
font-family: $sans-serif-narrow; font-family: $sans-serif-narrow;
@ -39,13 +37,10 @@
.site-title { .site-title {
display: -webkit-box; display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
padding: 0.5rem 0; padding: 0.5rem 0;
-ms-flex-item-align: stretch; align-self: stretch;
align-self: stretch;
-webkit-box-align: center; -webkit-box-align: center;
-ms-flex-align: center;
align-items: center; align-items: center;
font-weight: bold; font-weight: bold;
z-index: 20; z-index: 20;

View file

@ -176,10 +176,8 @@
.greedy-nav { .greedy-nav {
position: relative; position: relative;
display: -webkit-box; display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
-webkit-box-align: center; -webkit-box-align: center;
-ms-flex-align: center;
align-items: center; align-items: center;
background: $background-color; background: $background-color;
@ -200,9 +198,7 @@
} }
button { button {
-ms-flex-item-align: stretch; align-self: stretch;
-ms-grid-row-align: stretch;
align-self: stretch;
padding: 0 0.5rem; padding: 0 0.5rem;
border: 0; border: 0;
outline: none; outline: none;
@ -213,20 +209,16 @@
.visible-links { .visible-links {
display: -webkit-box; display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
-webkit-box-pack: end; -webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end; justify-content: flex-end;
-webkit-box-flex: 1; -webkit-box-flex: 1;
-ms-flex: 1;
flex: 1; flex: 1;
padding-right: 3.5rem; padding-right: 2rem;
overflow: hidden; overflow: hidden;
li { li {
-webkit-box-flex: 0; -webkit-box-flex: 0;
-ms-flex: none;
flex: none; flex: none;
&:last-child { &:last-child {
@ -255,7 +247,8 @@
&:hover:before { &:hover:before {
-webkit-transform: scaleX(1); -webkit-transform: scaleX(1);
transform: scaleX(1); /* reveal*/ -ms-transform: scaleX(1);
transform: scaleX(1); /* reveal*/
} }
} }
} }
@ -368,7 +361,8 @@
&:after { &:after {
-webkit-transform: rotate(90deg); -webkit-transform: rotate(90deg);
transform: rotate(90deg); -ms-transform: rotate(90deg);
transform: rotate(90deg);
} }
&:hover { &:hover {
@ -397,12 +391,14 @@
/* on hover show expand*/ /* on hover show expand*/
label:hover:after { label:hover:after {
-webkit-transform: rotate(90deg); -webkit-transform: rotate(90deg);
transform: rotate(90deg); -ms-transform: rotate(90deg);
transform: rotate(90deg);
} }
input:checked + label:hover:after { input:checked + label:hover:after {
-webkit-transform: rotate(0); -webkit-transform: rotate(0);
transform: rotate(0); -ms-transform: rotate(0);
transform: rotate(0);
} }
ul { ul {
@ -456,7 +452,8 @@
-webkit-transition: 0.3s ease-in-out; -webkit-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out; transition: 0.3s ease-in-out;
-webkit-transform: translate(0, 10%); -webkit-transform: translate(0, 10%);
transform: translate(0, 10%); -ms-transform: translate(0, 10%);
transform: translate(0, 10%);
} }
} }
@ -469,7 +466,8 @@
opacity: 1; opacity: 1;
margin-top: 1em; margin-top: 1em;
-webkit-transform: translate(0, 0); -webkit-transform: translate(0, 0);
transform: translate(0, 0); -ms-transform: translate(0, 0);
transform: translate(0, 0);
} }
} }

View file

@ -8,8 +8,10 @@
margin-top: 2em; margin-top: 2em;
padding-left: 1em; padding-left: 1em;
padding-right: 1em; padding-right: 1em;
animation: intro 0.3s both; -webkit-animation: intro 0.3s both;
animation-delay: 0.35s; animation: intro 0.3s both;
-webkit-animation-delay: 0.35s;
animation-delay: 0.35s;
@include breakpoint($x-large) { @include breakpoint($x-large) {
max-width: $x-large; max-width: $x-large;
@ -111,8 +113,10 @@
position: relative; position: relative;
margin-bottom: 2em; margin-bottom: 2em;
@include clearfix; @include clearfix;
animation: intro 0.3s both; -webkit-animation: intro 0.3s both;
animation-delay: 0.25s; animation: intro 0.3s both;
-webkit-animation-delay: 0.25s;
animation-delay: 0.25s;
&--overlay { &--overlay {
position: relative; position: relative;
@ -122,8 +126,10 @@
background-size: cover; background-size: cover;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: center; background-position: center;
animation: intro 0.3s both; -webkit-animation: intro 0.3s both;
animation-delay: 0.25s; animation: intro 0.3s both;
-webkit-animation-delay: 0.25s;
animation-delay: 0.25s;
a { a {
color: #fff; color: #fff;
@ -297,6 +303,7 @@
.page__comments-form { .page__comments-form {
padding: 1em; padding: 1em;
background: $lighter-gray; background: $lighter-gray;
-webkit-transition: $global-transition;
transition: $global-transition; transition: $global-transition;
&.disabled { &.disabled {

View file

@ -46,7 +46,7 @@ figure.highlight {
padding: 5px; padding: 5px;
border: 0; border: 0;
// line numbers /* line numbers*/
&.gutter { &.gutter {
padding-right: 1em; padding-right: 1em;
color: $light-gray; color: $light-gray;

File diff suppressed because one or more lines are too long

View file

@ -4,7 +4,7 @@ Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Luke Jackson Copyright (c) 2015 Luke Jackson
*/ */
$(function() { $(document).ready(function(){
var $btn = $('nav.greedy-nav button'); var $btn = $('nav.greedy-nav button');
var $vlinks = $('nav.greedy-nav .visible-links'); var $vlinks = $('nav.greedy-nav .visible-links');