Skip to content
This repository has been archived by the owner on Aug 28, 2019. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/1.7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mmistakes committed Jun 28, 2016
2 parents 0a2c44b + b6029f0 commit 685b205
Show file tree
Hide file tree
Showing 17 changed files with 618 additions and 711 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ GEM
rb-fsevent (0.9.7)
rb-inotify (0.9.7)
ffi (>= 0.5.0)
rouge (1.10.1)
rouge (1.11.1)
safe_yaml (1.0.4)
sass (3.4.22)
sawyer (0.7.0)
Expand Down
8 changes: 7 additions & 1 deletion _posts/2013-08-16-code-highlighting-post.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,10 @@ module Jekyll
end
end
end
~~~
~~~

### GitHub Gist Embed

An example of a Gist embed below.

<script src="https://gist.github.com/mmistakes/43a355923921d22cd993.js"></script>
143 changes: 134 additions & 9 deletions _sass/_animations.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
.animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}.animated.hinge{-webkit-animation-duration:2s;-moz-animation-duration:2s;-ms-animation-duration:2s;-o-animation-duration:2s;animation-duration:2s;}
/* ==========================================================================
Animations
========================================================================== */

.animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}.animated.hinge{-webkit-animation-duration:2s;-moz-animation-duration:2s;-ms-animation-duration:2s;-o-animation-duration:2s;animation-duration:2s;}

// Fade in
// --------------------------------------------------
/*
Fade in
========================================================================== */

@-webkit-keyframes fadeIn {
0% {opacity: 0;}
Expand All @@ -20,6 +24,7 @@
0% {opacity: 0;}
100% {opacity: 1;}
}

.fadeIn {
-webkit-animation-name: fadeIn;
-moz-animation-name: fadeIn;
Expand Down Expand Up @@ -67,6 +72,7 @@
transform: translateY(0);
}
}

.fadeInDown {
-webkit-animation-name: fadeInDown;
-moz-animation-name: fadeInDown;
Expand Down Expand Up @@ -114,16 +120,17 @@
transform: translateY(0);
}
}

.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
-moz-animation-name: fadeInDownBig;
-o-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}


// Bounce
// --------------------------------------------------
/*
Bounce
========================================================================== */

@-webkit-keyframes bounceIn {
0% {
Expand Down Expand Up @@ -189,12 +196,14 @@
transform: scale(1);
}
}

.bounceIn {
-webkit-animation-name: bounceIn;
-moz-animation-name: bounceIn;
-o-animation-name: bounceIn;
animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
0% {
opacity: 0;
Expand Down Expand Up @@ -282,9 +291,9 @@
animation-name: bounceInDown;
}


// Drop
// --------------------------------------------------
/*
Drop
========================================================================== */

@-webkit-keyframes drop {
0% {
Expand Down Expand Up @@ -324,4 +333,120 @@
-moz-animation-name: drop;
-o-animation-name: drop;
animation-name: drop;
}

/*
DL Menu In/Out
========================================================================== */

@-webkit-keyframes MenuAnimOut {
100% {
-webkit-transform: translateZ(300px);
opacity: 0;
}
}
@-moz-keyframes MenuAnimOut {
100% {
-moz-transform: translateZ(300px);
opacity: 0;
}
}
@keyframes MenuAnimOut {
100% {
transform: translateZ(300px);
opacity: 0;
}
}

@-webkit-keyframes MenuAnimIn {
0% {
-webkit-transform: translateZ(300px);
opacity: 0;
}
100% {
-webkit-transform: translateZ(0px);
opacity: 1;
}
}
@-moz-keyframes MenuAnimIn {
0% {
-moz-transform: translateZ(300px);
opacity: 0;
}
100% {
-moz-transform: translateZ(0px);
opacity: 1;
}
}
@keyframes MenuAnimIn {
0% {
transform: translateZ(300px);
opacity: 0;
}
100% {
transform: translateZ(0px);
opacity: 1;
}
}

@-webkit-keyframes SubMenuAnimIn {
0% {
-webkit-transform: translateZ(-300px);
opacity: 0;
}
100% {
-webkit-transform: translateZ(0px);
opacity: 1;
}
}
@-moz-keyframes SubMenuAnimIn {
0% {
-moz-transform: translateZ(-300px);
opacity: 0;
}
100% {
-moz-transform: translateZ(0px);
opacity: 1;
}
}
@keyframes SubMenuAnimIn {
0% {
transform: translateZ(-300px);
opacity: 0;
}
100% {
transform: translateZ(0px);
opacity: 1;
}
}

@-webkit-keyframes SubMenuAnimOut {
0% {
-webkit-transform: translateZ(0px);
opacity: 1;
}
100% {
-webkit-transform: translateZ(-300px);
opacity: 0;
}
}
@-moz-keyframes SubMenuAnimOut {
0% {
-moz-transform: translateZ(0px);
opacity: 1;
}
100% {
-moz-transform: translateZ(-300px);
opacity: 0;
}
}
@keyframes SubMenuAnimOut {
0% {
transform: translateZ(0px);
opacity: 1;
}
100% {
transform: translateZ(-300px);
opacity: 0;
}
}
6 changes: 5 additions & 1 deletion _sass/_coderay.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
/* ==========================================================================
CodeRay Syntax Highlighting
========================================================================== */

.CodeRay {
font-family: $code-font;
@include font(12);
color: #d0d0d0;
margin-bottom: 1.5em;
@include rounded(3px);
border-radius: 3px;
}

.CodeRay .code pre {
Expand Down
Loading

0 comments on commit 685b205

Please sign in to comment.