<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Stile CSS per i widget con le custom taxonomies 
 * \Imprenditore\EdizioniTerritoriali
 * \Imprenditore\WidgetIndustrie
 */

.banner-taxonomy {
	display: inline-block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 200px;
    text-decoration: none;
    box-shadow: 0 0 5px rgba(0,0,0,.3);
    -webkit-transition: transform .3s;
	transition        : transform .3s;
	margin-top: 30px;
}

.banner-taxonomy:hover {
	transform: scale(1.1);
}

.banner-taxonomy span {
	display: block;
    background: #fff;
    padding: 15px 80px 15px 20px;
    text-decoration: none;
    font-size: 27px;
    font-weight: bold;
    color: #191654;
    background-image: url(../images/symbol.jpg);
    background-repeat: no-repeat;
    background-size: 50px auto;
    background-position: right 20px center;
}</pre></body></html>