20 lines
344 B
CSS
Executable File
20 lines
344 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;
|
|
}
|