remove unneeded css

This commit is contained in:
Dave R 2018-10-08 22:26:26 +01:00 committed by GitHub
parent 6c81b3e6cd
commit 39419ccf00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 28 deletions

View File

@ -39,7 +39,7 @@ body {
font-family: 'Roboto';
color: white;
-moz-user-select: none; /* Firefox */
-moz-user-select: none; /* Firefox */
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
@ -154,31 +154,6 @@ time {
* Copyright (c) 2018 Daniel Eden
*/
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
@ -212,7 +187,6 @@ time {
animation-name: fadeInUp;
}
.animated {
-webkit-animation-duration: 0.75s; /* modified from 1s */
animation-duration: 0.75s; /* modified from 1s */
@ -228,4 +202,4 @@ time {
-webkit-transition: none !important;
transition: none !important;
}
}
}