Skip to content

Commit

Permalink
Fixed transition definitions
Browse files Browse the repository at this point in the history
Made sure durations come before timing functions.

TryGhost#168 (comment)
  • Loading branch information
mankittens committed Feb 18, 2015
1 parent 1e6e807 commit b064e9f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ h6 {

a {
color: #4A4A4A;
transition: color ease 0.3s;
transition: color 0.3s ease;
}

a:hover {
Expand Down Expand Up @@ -579,7 +579,7 @@ margin on the iframe, cause it breaks stuff. */
line-height: 35px;
border-radius: 3px;
background: rgba(0,0,0,0.1);
transition: all ease 0.3s;
transition: all 0.3s ease;
}
.back-button:before {
position: relative;
Expand All @@ -606,7 +606,7 @@ margin on the iframe, cause it breaks stuff. */
white-space: nowrap;
border-radius: 3px;
background: rgba(0,0,0,0.1);
transition: all ease 0.3s;
transition: all 0.3s ease;
}
.subscribe-button:before {
font-size: 9px;
Expand Down Expand Up @@ -1227,7 +1227,7 @@ body:not(.post-template) .post-title {
border: #bfc8cd 1px solid;
text-decoration: none;
border-radius: 4px;
transition: border ease 0.3s;
transition: border 0.3s ease;
}

.older-posts {
Expand Down

0 comments on commit b064e9f

Please sign in to comment.