
Here is a little CSS to add some pop to the quick links widget. Just apply CSS to the widget instance.
The best thing is all this is done without any customizations to the widget code.
This code removes the title for a cleaner look, and adds a hover effect for when you hover over a tile.
/* */
.title{
display:none;
}
.card-thumbnail-align-center{
transition: transform .3s;
}
.card-thumbnail-align-center:hover{
transform: scale(1.15);
border-top: 0rem;
border-right: 0rem;
border-bottom: 0rem;
border-bottom: .8rem solid #00FF00;
box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}
