MediaWiki:Common.css: Unterschied zwischen den Versionen
LB (Diskussion | Beiträge) |
LB (Diskussion | Beiträge) |
||
Zeile 60: | Zeile 60: | ||
height:24px; | height:24px; | ||
width:24px; | width:24px; | ||
− | background:url('http://wiki.e-vendo.de/images/ | + | background:url('http://wiki.e-vendo.de/images/5/57/Sb_arrow-down-t.png'); |
background-repeat:no-repeat; | background-repeat:no-repeat; | ||
transition:background 0.4s; | transition:background 0.4s; | ||
} | } | ||
− | .accordion:hover | + | .accordion:hover > .sb-icon { |
height:24px; | height:24px; | ||
width:24px; | width:24px; | ||
− | background:url('http://wiki.e-vendo.de/images/2/ | + | background:url('http://wiki.e-vendo.de/images/e/e0/Sb_arrow-down.png'); |
+ | background-repeat:no-repeat; | ||
+ | transition:background 0.4s; | ||
+ | } | ||
+ | |||
+ | .active > .sb-icon { | ||
+ | height:24px; | ||
+ | width:24px; | ||
+ | background:url('http://wiki.e-vendo.de/images/2/25/Sb_arrow-up-t.png'); | ||
background-repeat:no-repeat; | background-repeat:no-repeat; | ||
transition:background 0.4s; | transition:background 0.4s; | ||
} | } |
Version vom 5. Juni 2018, 07:48 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* ==== fonts ==== */
@import url('https://fonts.googleapis.com/css?family=Ubuntu');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
body {font-family: 'Open Sans', sans-serif; font-size:11px;}
div#content h1, div#content h2, div#content h3, div#content h4, div#content h5 {font-family: 'Ubuntu', sans-serif;}
/* ==== navboxes ==== */
.nb2 div:hover {box-shadow:0px 0px 15px 0px #dddddd;}
.nb2 div {transition: box-shadow 0.3s;}
.nb2-o div:hover {box-shadow:0px 0px 15px 0px rgba(255, 149, 2, 0.53);}
.nb2-o div {transition: box-shadow 0.3s;}
.nb50 > div:hover {box-shadow:0px 0px 15px 0px #dddddd;}
.nb50 > div {transition: box-shadow 0.3s;}
a, a:active, a:focus, a:hover, a:visited {color:#038387;}
.portlet ul {font-size:105%;}
/* ==== accordion ==== */
.accordion {
width:200px;
color: #038387;
cursor: pointer;
padding: 10px 10px 10px 20px;
text-align: left;
font-size:16px;
border: none;
outline: none;
transition: 0.4s;
border:2px solid #05a3a8;
box-shadow:2px 2px 0 #038387;
}
.active, .accordion:hover {
width:200px;
background-color:#05a3a8;
color:white;
}
.panel {
width:210px;
padding: 10px;
background-color:#f9f9f9;
display:none;
overflow: hidden;
border:2px solid #05a3a8;
box-shadow:2px 2px 0 #038387;
}
.sb-icon {
height:24px;
width:24px;
background:url('http://wiki.e-vendo.de/images/5/57/Sb_arrow-down-t.png');
background-repeat:no-repeat;
transition:background 0.4s;
}
.accordion:hover > .sb-icon {
height:24px;
width:24px;
background:url('http://wiki.e-vendo.de/images/e/e0/Sb_arrow-down.png');
background-repeat:no-repeat;
transition:background 0.4s;
}
.active > .sb-icon {
height:24px;
width:24px;
background:url('http://wiki.e-vendo.de/images/2/25/Sb_arrow-up-t.png');
background-repeat:no-repeat;
transition:background 0.4s;
}