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

Commit

Permalink
Remove old vendor prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lots0logs committed Jan 7, 2018
1 parent 33ea538 commit 1c96dbc
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions themes/default/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ a {

.time-panel a {
display: block;
-webkit-animation: clkwiggle 7s infinite;
animation: clkwiggle 7s infinite;
}

.time:hover {
Expand All @@ -288,7 +288,7 @@ a {
}

.time-panel:target {
-webkit-animation: flip 0.5s ease-out;
animation: flip 0.5s ease-out;
}

.time-panel:target:after {
Expand Down Expand Up @@ -423,7 +423,6 @@ input.password.form-control {
margin-top: -1px;
}
input.password.form-control:focus {
-webkit-box-shadow: inset 0 -2px 0 #2196F3 !important;
box-shadow: inset 0 -2px 0 #2196F3 !important;
border-bottom: 2px solid #2196F3 !important;
margin-top: 0;
Expand Down Expand Up @@ -454,24 +453,24 @@ input.password.form-control:focus {

/* Animation */

@-webkit-keyframes bounce {
@keyframes bounce {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
}

@-webkit-keyframes clkwiggle {
0% { -webkit-transform: rotate(0deg); }
1% { -webkit-transform: rotate(-2deg); }
1.5% { -webkit-transform: rotate(2deg); }
2% { -webkit-transform: rotate(0deg); }
2.5% { -webkit-transform: rotate(-2deg); }
3.5% { -webkit-transform: rotate(2deg); }
4% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(0deg); }
@keyframes clkwiggle {
0% { transform: rotate(0deg); }
1% { transform: rotate(-2deg); }
1.5% { transform: rotate(2deg); }
2% { transform: rotate(0deg); }
2.5% { transform: rotate(-2deg); }
3.5% { transform: rotate(2deg); }
4% { transform: rotate(0deg); }
100% { transform: rotate(0deg); }
}

.random {
Expand Down Expand Up @@ -593,7 +592,6 @@ a.list-group-item.hovered:after, a.list-group-item.hovered:before {
a.list-group-item:focus:after, a.list-group-item:hover:after, a.list-group-item.hovered:after {
right: 10px;
left: auto;
-webkit-transform: skew(8deg) rotate(3deg);
transform: skew(8deg) rotate(3deg);
}

Expand Down

0 comments on commit 1c96dbc

Please sign in to comment.