another trial

This commit is contained in:
KodeStar
2018-02-07 22:24:43 +00:00
parent 116ff2dd46
commit 1d390d7966
3 changed files with 38 additions and 14 deletions

16
public/css/app.css vendored
View File

@@ -817,7 +817,7 @@ div.create .input select {
/* Hide default HTML checkbox */
.switch input {
visibility: hidden;
display: none;
}
/* The slider */
@@ -877,11 +877,25 @@ input:checked + .slider:before {
}
}
@keyframes autofill {
to {
background: #f5f5f5;
color: #fff;
}
}
input:-webkit-autofill {
-webkit-animation-name: autofill;
-webkit-animation-fill-mode: both;
}
input:autofill {
-webkit-animation-name: autofill;
animation-name: autofill;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
button.link {
border: none;
-webkit-appearance: none;