MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
>Icephoenix KKeine Bearbeitungszusammenfassung |
>Icephoenix K fixed errors |
||
| Zeile 2: | Zeile 2: | ||
.btn { | .btn { | ||
display: block; | |||
display: | |||
padding: 0.5rem 2rem; | padding: 0.5rem 2rem; | ||
font-weight: bold; | font-weight: bold; | ||
margin: 1rem; | margin: 1rem auto; | ||
} | } | ||
.btn.green { | .btn.green { | ||
| Zeile 15: | Zeile 14: | ||
} | } | ||
.btn.yellow { | .btn.yellow { | ||
background: #ffc107 | background: #ffc107; | ||
} | } | ||
.btn.red { | .btn.red { | ||
Version vom 8. September 2020, 20:49 Uhr
/* CSS placed here will be applied to all skins */
.btn {
display: block;
padding: 0.5rem 2rem;
font-weight: bold;
margin: 1rem auto;
}
.btn.green {
background: #28a745;
}
.btn.blue {
background: #007bff;
}
.btn.yellow {
background: #ffc107;
}
.btn.red {
background: #dc3545;
}
.btn.teal {
background: #17a2b8;
}
.btn.grey {
background: #ccc;
}
.btn.grey a.external {
color: #222 !important;
}
.btn a.external {
background: none !important;
padding: 0 !important;
color: white !important;
}