29 lines
435 B
CSS
Executable File
29 lines
435 B
CSS
Executable File
|
|
*{
|
|
transition: all .4s ease;
|
|
}
|
|
|
|
a:hover, button:hover, div.form-group:hover, header nav a{
|
|
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;
|
|
}
|
|
|
|
header nav svg{
|
|
margin-right: .4em
|
|
}
|