MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus Gamedevwiki
Trudel (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „→Das folgende CSS wird für alle Benutzeroberflächen geladen.: .systemmessage { font-size:1em; border-radius:5px; padding-left:45px; padding-right:45px; padding-top:0.5em; padding-bottom:0.7em; margin:5px } .systemmessage p { padding:0; margin:0 } .info { color:#00529B; border:1px solid #0052FC; background:#BDE5F8 url(/wiki/images/information.png) top left no-repeat; background-position:5px 5px } .success { color:#4F8A…“) |
Trudel (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 19: | Zeile 19: | ||
color:#00529B; | color:#00529B; | ||
border:1px solid #0052FC; | border:1px solid #0052FC; | ||
background:#BDE5F8 url(/ | background:#BDE5F8 url(/images/systemicons/information.png) top left no-repeat; | ||
background-position:5px 5px | background-position:5px 5px | ||
} | } | ||
Zeile 26: | Zeile 26: | ||
color:#4F8A10; | color:#4F8A10; | ||
border:1px solid #5F9B10; | border:1px solid #5F9B10; | ||
background:#DFF2BF url(/ | background:#DFF2BF url(/images/systemicons/accept.png) top left no-repeat; | ||
background-position:5px 5px | background-position:5px 5px | ||
} | } | ||
Zeile 33: | Zeile 33: | ||
color:#9F6000; | color:#9F6000; | ||
border:1px solid #5B5000; | border:1px solid #5B5000; | ||
background:#FEEFB3 url(/ | background:#FEEFB3 url(/images/systemicons/warning.png) top left no-repeat; | ||
background-position:5px 5px | background-position:5px 5px | ||
} | } | ||
Zeile 40: | Zeile 40: | ||
color:#D8000C; | color:#D8000C; | ||
border:1px solid #E9000C; | border:1px solid #E9000C; | ||
background:#FFBABA url(/ | background:#FFBABA url(/images/systemicons/cancel.png) top left no-repeat; | ||
background-position:5px 5px | background-position:5px 5px | ||
} | } |
Aktuelle Version vom 6. November 2023, 11:07 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
.systemmessage {
font-size:1em;
border-radius:5px;
padding-left:45px;
padding-right:45px;
padding-top:0.5em;
padding-bottom:0.7em;
margin:5px
}
.systemmessage p {
padding:0;
margin:0
}
.info {
color:#00529B;
border:1px solid #0052FC;
background:#BDE5F8 url(/images/systemicons/information.png) top left no-repeat;
background-position:5px 5px
}
.success {
color:#4F8A10;
border:1px solid #5F9B10;
background:#DFF2BF url(/images/systemicons/accept.png) top left no-repeat;
background-position:5px 5px
}
.warning {
color:#9F6000;
border:1px solid #5B5000;
background:#FEEFB3 url(/images/systemicons/warning.png) top left no-repeat;
background-position:5px 5px
}
.error {
color:#D8000C;
border:1px solid #E9000C;
background:#FFBABA url(/images/systemicons/cancel.png) top left no-repeat;
background-position:5px 5px
}
.infobox {
float:right;
border:1px solid lightsteelblue;
padding:5px;
width:25em;
margin:0 0 0.5em 1em;
font-size:85%;
background:#F9F9F9
}
.infobox-header {
background:lightsteelblue;
margin-bottom:2px;
text-align:center;
font-size:118%;
font-weight:bold;
width:100%
}
.flex-container {
display:flex;
width:100%;
flex-flow:row wrap;
justify-content:space-between
}
.flex-item {
flex-grow:1;
flex-basis:0;
background:#fcfcfc;
border:solid #eeeeee;
border-top-width:medium;
border-right-width:medium;
border-bottom-width:medium;
border-left-width:medium;
border-width:1px 1px 0.2em;
padding:.8em .8em;
box-shadow:0 1px 2px 1px rgba(0,0,0,0.02);
margin:.5em;
line-height:1.125;
word-wrap:break-word
}
.fbox {
flex:1;
min-width:210px;
background:#fcfcfc;
border:solid #eeeeee;
border-top-width:medium;
border-right-width:medium;
border-bottom-width:medium;
border-left-width:medium;
border-width:1px 1px 0.2em;
padding:.8em .8em;
box-shadow:0 1px 2px 1px rgba(0,0,0,0.02);
margin:5px;
line-height:1.125;
word-wrap:break-word
}
.fbox-heading {
font-weight:bold;
text-decoration:underline;
padding:0;
margin:0
}