Added button:active(clicked) "animation"

I never knew if I clicked the button on touch screen, so I add animation when button is active  (clicked).
simple/nice/useful
This commit is contained in:
Arisa
2019-04-18 23:13:28 +02:00
parent a18c2938ed
commit 4a23c770be

View File

@@ -318,6 +318,9 @@ nav a:hover{
button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
background: #42444a;
}
button:active, input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active {
transform: scale(.93);
}
/* Forms */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {