MediaWiki:Common.css: различия между версиями
Страница интерфейса MediaWiki
Дополнительные действия
Mohooks (обсуждение | вклад) Новая страница: «→Размещённый здесь CSS будет применяться ко всем темам оформления: .infobox { background: #eee; border: 1px solid #aaa; float: right; margin: 0 0 1em 1em; padding: 1em; width: 400px; } .infobox-title { font-size: 2em; text-align: center; } .infobox-image { text-align: center; } .infobox-table th { text-align: right; vertical-align: top; width: 120px; } .i...» |
Mohooks (обсуждение | вклад) Нет описания правки |
||
(не показано 9 промежуточных версий этого же участника) | |||
Строка 1: | Строка 1: | ||
.infobox { | .infobox { | ||
background: #eee; | background: #eee; | ||
Строка 7: | Строка 7: | ||
padding: 1em; | padding: 1em; | ||
width: 400px; | width: 400px; | ||
border-radius: 7px; | |||
color: #000; | |||
} | } | ||
@media (prefers-color-scheme: dark) { | |||
.infobox { | |||
background: #2a2a2a; | |||
border: 1px solid #555; | |||
color: #f0f0f0; | |||
} | |||
} | |||
.infobox-title { | .infobox-title { | ||
font-size: | |||
font-size: 1em; | |||
background-color: #5485E8; | |||
font-weight: 600; | |||
text-align: center; | text-align: center; | ||
border-radius: 5px; | |||
color: aliceblue; | |||
} | } | ||
.infobox-image { | .infobox-image { | ||
margin-top: 5px; | |||
text-align: center; | text-align: center; | ||
} | |||
.infobox-image img { | |||
border-radius: 7px; | |||
} | } | ||
.infobox-table th { | .infobox-table th { | ||
width: 100%; | |||
text-align: left; | |||
} | } | ||
.infobox-table td { | .infobox-table td { | ||
vertical-align: top; | vertical-align: top; | ||
} | } |
Текущая версия от 10:38, 17 июля 2025
.infobox {
background: #eee;
border: 1px solid #aaa;
float: right;
margin: 0 0 1em 1em;
padding: 1em;
width: 400px;
border-radius: 7px;
color: #000;
}
@media (prefers-color-scheme: dark) {
.infobox {
background: #2a2a2a;
border: 1px solid #555;
color: #f0f0f0;
}
}
.infobox-title {
font-size: 1em;
background-color: #5485E8;
font-weight: 600;
text-align: center;
border-radius: 5px;
color: aliceblue;
}
.infobox-image {
margin-top: 5px;
text-align: center;
}
.infobox-image img {
border-radius: 7px;
}
.infobox-table th {
width: 100%;
text-align: left;
}
.infobox-table td {
vertical-align: top;
}