Skip to content

Commit

Permalink
Fix vendor prefixes
Browse files Browse the repository at this point in the history
Add missing vendor prefixes, and remove no longer needed ones.

Assumed browser support:

 * latest two versions of each browser (in the case of IE, also IE9)
 * browsers that have over 5% global usage
  • Loading branch information
alrra committed Jul 12, 2014
1 parent 98b9fdd commit aa321f8
Showing 1 changed file with 60 additions and 25 deletions.
85 changes: 60 additions & 25 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,75 +29,70 @@ code {
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate(15deg);
transform: rotate(15deg);
transform: rotate(15deg);
}

40% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
transform: rotate(-10deg);
}

60% {
-webkit-transform: rotate(5deg);
transform: rotate(5deg);
transform: rotate(5deg);
}

80% {
-webkit-transform: rotate(-5deg);
transform: rotate(-5deg);
transform: rotate(-5deg);
}

100% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
transform: rotate(0deg);
}
}

@keyframes swing {
20% {
-webkit-transform: rotate(15deg);
-ms-transform: rotate(15deg);
transform: rotate(15deg);
transform: rotate(15deg);
}

40% {
-webkit-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
transform: rotate(-10deg);
transform: rotate(-10deg);
}

60% {
-webkit-transform: rotate(5deg);
-ms-transform: rotate(5deg);
transform: rotate(5deg);
transform: rotate(5deg);
}

80% {
-webkit-transform: rotate(-5deg);
-ms-transform: rotate(-5deg);
transform: rotate(-5deg);
transform: rotate(-5deg);
}

100% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
transform: rotate(0deg);
}
}

.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
animation-name: swing;
}

.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-fill-mode: both;
}

h1, h2, h3, h5, h6 {font-weight: 300; line-height: 1.2em;}
Expand All @@ -108,7 +103,8 @@ em {font-family: Georgia;}
a, a:visited, a:active {
color: #fff;
text-decoration: none;
transition: color 0.2s ease;
-webkit-transition: color 0.2s ease;
transition: color 0.2s ease;
font-weight: 700;
}

Expand Down Expand Up @@ -157,10 +153,12 @@ p, .textcontainer {
padding: 22px 0;
border-bottom: 1px dashed #fff;
border-top: 1px dashed #fff;
-moz-column-count: 3;
-moz-column-gap: 20px;
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 20px;
-moz-column-gap: 20px;
column-gap: 20px;
}

ul.nav {
Expand Down Expand Up @@ -210,10 +208,10 @@ ul.what-next-list {

}


#user-name span {
color: #c5d6f1;
-webkit-animation: blink 1s infinite linear;
-webkit-animation: blink 1s infinite linear;
animation: blink 1s infinite linear;
}

@-webkit-keyframes blink {
Expand Down Expand Up @@ -252,3 +250,40 @@ ul.what-next-list {
0 0 15px #c5d6f1;
}
}

@keyframes blink {
0% { text-shadow: none; }
79% { text-shadow: none; }
80% {
text-shadow: 0 0 5px #c5d6f1,
0 0 5px #c5d6f1,
0 0 5px #c5d6f1,
0 0 5px #c5d6f1,
0 0 5px #c5d6f1,
0 0 5px #c5d6f1,
0 0 10px #c5d6f1,
0 0 10px #c5d6f1,
0 0 15px #c5d6f1,
0 0 15px #c5d6f1,
0 0 15px #c5d6f1,
0 0 15px #c5d6f1,
0 0 15px #c5d6f1,
0 0 15px #c5d6f1;
}
100% {
text-shadow: 0 0 5px #c5d6f1,
0 0 5px #c5d6f1,
0 0 5px #c5d6f1,
0 0 5px #c5d6f1,
0 0 5px #c5d6f1,
0 0 5px #c5d6f1,
0 0 10px #c5d6f1,
0 0 10px #c5d6f1,
0 0 15px #c5d6f1,
0 0 15px #c5d6f1,
0 0 15px #c5d6f1,
0 0 15px #c5d6f1,
0 0 15px #c5d6f1,
0 0 15px #c5d6f1;
}
}

0 comments on commit aa321f8

Please sign in to comment.