kre8tiv / urwahl3000

Freies Wordpress-Theme für GRÜNE Köpfe & Gliederungen
GNU General Public License v3.0
17 stars 14 forks source link

Styling für Schlagwort-Wolke wie andere Widgets auch auf Hintergrund #32

Closed modulbuero closed 5 years ago

modulbuero commented 5 years ago

Links ursprünglicher Style, rechts angepasst: grafik grafik

/* MINI (Mobile etc.) */
@media screen {

.widget_tag_cloud a, #footer .widget_tag_cloud a {
    display: inline;
    padding: 0 3px;
    background: transparent;
    color: #afdca7;
    border-radius: 0.3em;
    border-width: 1px;
    border-color: transparent;
    border-style: solid;
}

.widget_tag_cloud a:hover, #footer .widget_tag_cloud a:hover {
    background: transparent;
    color: #ffe000;
    border-color: #afdca7
}

}

/* DESKTOP */
@media only screen and (min-width: 770px) {

.widget_tag_cloud {
    background: #e6e6e6;
    padding: 1.5em;
}

.widget_tag_cloud h3.widgettitle {
    color: #0a321e;
    text-shadow: unset;
}

.widget_tag_cloud a, #footer .widget_tag_cloud a {
    display: inline;
    padding: 0 3px;
    background: transparent;
    color: #46962b;
    border-radius: 0.3em;
    border-width: 1px;
    border-color: transparent;
    border-style: solid;
}

#wrap .widget_tag_cloud a {
    background: transparent;
    color: #46962b;
}   

.widget_tag_cloud a:hover, #footer .widget_tag_cloud a:hover {
    color: #0a321e;
    border-color: #0a321e
}
#wrap .widget_tag_cloud a:hover {
    background: transparent;
}

}

Originally posted by @Harry-von-Borstel in https://github.com/kre8tiv/urwahl3000/issues/30#issuecomment-436977584

modulbuero commented 5 years ago

Das würde ich einfach mal so hier stehen lassen, damit andere sich dran bedienen können. Für alle würde ich es eher nicht einbauen. Trotzdem danke fürs Teilen!