MediaWiki:Common.css: различия между версиями
Admin (обсуждение | вклад) |
Admin (обсуждение | вклад) |
||
| Строка 14: | Строка 14: | ||
} | } | ||
| − | /* | + | /* ===== ШАПКА ===== */ |
| + | |||
.header-container.header-chrome { | .header-container.header-chrome { | ||
background: #ffffff !important; | background: #ffffff !important; | ||
border-bottom: 1px solid #e6e8f5 !important; | border-bottom: 1px solid #e6e8f5 !important; | ||
height: 64px !important; | height: 64px !important; | ||
| + | display: flex !important; | ||
| + | align-items: center !important; | ||
| + | } | ||
| + | |||
| + | /* Внутренний контейнер */ | ||
| + | .header-container .header { | ||
| + | display: flex !important; | ||
| + | align-items: center !important; | ||
| + | justify-content: space-between !important; | ||
| + | width: 100% !important; | ||
| + | height: 100% !important; | ||
| + | padding: 0 32px !important; | ||
| + | } | ||
| + | |||
| + | /* Левая часть (лого + поиск) */ | ||
| + | .branding-box { | ||
| + | display: flex !important; | ||
| + | align-items: center !important; | ||
} | } | ||
| − | |||
.branding-box img { | .branding-box img { | ||
height: 40px !important; | height: 40px !important; | ||
width: auto !important; | width: auto !important; | ||
| + | display: block !important; | ||
} | } | ||
/* Поиск */ | /* Поиск */ | ||
| + | .search-box { | ||
| + | margin-left: 48px !important; | ||
| + | display: flex !important; | ||
| + | align-items: center !important; | ||
| + | } | ||
| + | |||
.search-box input { | .search-box input { | ||
background: #f3f4fa !important; | background: #f3f4fa !important; | ||
| Строка 34: | Строка 59: | ||
height: 36px !important; | height: 36px !important; | ||
color: #333 !important; | color: #333 !important; | ||
| + | padding: 0 14px !important; | ||
| + | } | ||
| + | |||
| + | /* Иконки справа */ | ||
| + | .minerva-user-navigation { | ||
| + | display: flex !important; | ||
| + | align-items: center !important; | ||
| + | gap: 18px !important; | ||
} | } | ||
| − | |||
.minerva-user-navigation a { | .minerva-user-navigation a { | ||
color: #333 !important; | color: #333 !important; | ||
} | } | ||
| − | /* | + | /* ===== КОНТЕНТ ===== */ |
| + | |||
h1, h2, h3 { | h1, h2, h3 { | ||
color: #111 !important; | color: #111 !important; | ||
} | } | ||
| − | |||
button, | button, | ||
.mw-ui-button { | .mw-ui-button { | ||
| Строка 56: | Строка 88: | ||
} | } | ||
| − | |||
a { | a { | ||
color: #6d85ff !important; | color: #6d85ff !important; | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
} | } | ||
Версия 23:49, 1 марта 2026
/* =========================================
BARLIVE BRAND STYLE (светлая версия)
========================================= */
/* Общий фон страницы */
body {
background: linear-gradient(
120deg,
#f7f8fc 0%,
#eef1ff 50%,
#f5f6fb 100%
) !important;
color: #1f1f1f !important;
}
/* ===== ШАПКА ===== */
.header-container.header-chrome {
background: #ffffff !important;
border-bottom: 1px solid #e6e8f5 !important;
height: 64px !important;
display: flex !important;
align-items: center !important;
}
/* Внутренний контейнер */
.header-container .header {
display: flex !important;
align-items: center !important;
justify-content: space-between !important;
width: 100% !important;
height: 100% !important;
padding: 0 32px !important;
}
/* Левая часть (лого + поиск) */
.branding-box {
display: flex !important;
align-items: center !important;
}
.branding-box img {
height: 40px !important;
width: auto !important;
display: block !important;
}
/* Поиск */
.search-box {
margin-left: 48px !important;
display: flex !important;
align-items: center !important;
}
.search-box input {
background: #f3f4fa !important;
border: 1px solid #e0e3f0 !important;
border-radius: 10px !important;
height: 36px !important;
color: #333 !important;
padding: 0 14px !important;
}
/* Иконки справа */
.minerva-user-navigation {
display: flex !important;
align-items: center !important;
gap: 18px !important;
}
.minerva-user-navigation a {
color: #333 !important;
}
/* ===== КОНТЕНТ ===== */
h1, h2, h3 {
color: #111 !important;
}
button,
.mw-ui-button {
background-color: #c93348 !important;
border: none !important;
border-radius: 10px !important;
color: #fff !important;
padding: 8px 18px !important;
}
a {
color: #6d85ff !important;
}