MediaWiki:Common.css: verschil tussen versies
Naar navigatie springen
Naar zoeken springen
Geen bewerkingssamenvatting |
Geen bewerkingssamenvatting |
||
| Regel 1: | Regel 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
input, | |||
textarea, | |||
button { | |||
color: black; | |||
} | |||
/* Space state gerelateerd */ | |||
#spacestatus { | #spacestatus { | ||
width: 80px; | width: 80px; | ||
Versie van 6 jul 2016 13:42
/* CSS placed here will be applied to all skins */
input,
textarea,
button {
color: black;
}
/* Space state gerelateerd */
#spacestatus {
width: 80px;
position: relative;
top: -20px;
left: 43px;
border-radius: 3px;
text-align: center;
box-shadow: rgba(100,100,100,.6) 2px 2px 5px;
transform: rotate(-5deg);
animate: ;
}
#spacestatus.open {
opacity: 1;
background: lime;
color: black;
}
#spacestatus.open:before {
content: "nu open!";
}
#spacestatus.closed {
opacity: 1;
background: red;
color: white;
}
#spacestatus.gesloten:before {
content: "gesloten";
}