2020-08-08 20:52:24 -04:00

24 lines
381 B
CSS
Executable File

*{
transition: all .4s ease;
}
a:hover, button:hover, div.form-group:hover{
color: inherit;
transition: all .4s ease;
background-color: inherit;
-ms-transform: scale(1.05);
-webkit-transform: scale(1.05);
transform: scale(1.05); /* Standard syntax */
z-index: 999999;
}
div.card-body{
padding-left: 1.5em;
padding-right: 1.5em;
}
.my-2 > a {
padding-right: .5em;
}