Открыть главное меню
Строка 1: Строка 1:
/* =========================================
+
/* ===== ЖЁСТКОЕ ВЫРАВНИВАНИЕ ШАПКИ ===== */
  BARLIVE BRAND STYLE (светлая версия)
 
  ========================================= */
 
 
 
/* ===== ОБЩИЙ ФОН ===== */
 
 
 
body {
 
    background: linear-gradient(
 
        120deg,
 
        #f7f8fc 0%,
 
        #eef1ff 50%,
 
        #f5f6fb 100%
 
    ) !important;
 
    color: #1f1f1f !important;
 
}
 
 
 
/* ===== ШАПКА (Minerva safe) ===== */
 
  
 
.header-container.header-chrome {
 
.header-container.header-chrome {
 +
    height: 64px !important;
 
     background: #ffffff !important;
 
     background: #ffffff !important;
 
     border-bottom: 1px solid #e6e8f5 !important;
 
     border-bottom: 1px solid #e6e8f5 !important;
    height: 64px !important;
 
 
}
 
}
  
/* Внутренний header */
+
/* Делаем form flex-контейнером */
 
.header-container form.header {
 
.header-container form.header {
 
     display: flex !important;
 
     display: flex !important;
 
     align-items: center !important;
 
     align-items: center !important;
     height: 100% !important;
+
     height: 64px !important;
     padding: 0 28px !important;
+
     padding: 0 24px !important;
 
}
 
}
  
/* Логотип */
+
/* Все прямые div внутри header выравниваем */
.branding-box {
+
.header-container form.header > div {
 
     display: flex !important;
 
     display: flex !important;
 
     align-items: center !important;
 
     align-items: center !important;
 
}
 
}
  
.branding-box img {
+
/* Отступ после логотипа */
     height: 40px !important;
+
.header-container .branding-box {
    width: auto !important;
+
     margin-right: 40px !important;
    display: block !important;
 
 
}
 
}
  
 
/* Поиск */
 
/* Поиск */
 
.search-box {
 
.search-box {
     margin-left: 48px !important;
+
     margin: 0 !important;
 
}
 
}
  
 
.search-box input {
 
.search-box input {
    background: #f3f4fa !important;
 
    border: 1px solid #e0e3f0 !important;
 
    border-radius: 10px !important;
 
 
     height: 36px !important;
 
     height: 36px !important;
    padding: 0 14px !important;
 
    color: #333 !important;
 
 
}
 
}
  
/* Иконки справа */
+
/* Иконки вправо */
 
.minerva-user-navigation {
 
.minerva-user-navigation {
 
     margin-left: auto !important;
 
     margin-left: auto !important;
 
     display: flex !important;
 
     display: flex !important;
 
     align-items: center !important;
 
     align-items: center !important;
    gap: 18px !important;
 
}
 
 
.minerva-user-navigation a {
 
    color: #333 !important;
 
}
 
 
/* ===== КОНТЕНТ ===== */
 
 
h1, h2, h3 {
 
    color: #111 !important;
 
}
 
 
/* Ссылки */
 
a {
 
    color: #6d85ff !important;
 
}
 
 
/* Кнопки */
 
button,
 
.mw-ui-button {
 
    background-color: #c93348 !important;
 
    border: none !important;
 
    border-radius: 10px !important;
 
    color: #fff !important;
 
    padding: 8px 18px !important;
 
}
 
 
/* Карточки / блоки */
 
#content,
 
footer,
 
.content table.infobox,
 
.mw-highlight,
 
.navbox,
 
.navbox-subgroup {
 
    background-color: #ffffff !important;
 
    border-radius: 14px !important;
 
}
 
 
/* Убираем лишний мусор */
 
#siteNotice,
 
footer .footer-content {
 
    display: none !important;
 
 
}
 
}

Версия 23:51, 1 марта 2026

/* ===== ЖЁСТКОЕ ВЫРАВНИВАНИЕ ШАПКИ ===== */

.header-container.header-chrome {
    height: 64px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e6e8f5 !important;
}

/* Делаем form flex-контейнером */
.header-container form.header {
    display: flex !important;
    align-items: center !important;
    height: 64px !important;
    padding: 0 24px !important;
}

/* Все прямые div внутри header выравниваем */
.header-container form.header > div {
    display: flex !important;
    align-items: center !important;
}

/* Отступ после логотипа */
.header-container .branding-box {
    margin-right: 40px !important;
}

/* Поиск */
.search-box {
    margin: 0 !important;
}

.search-box input {
    height: 36px !important;
}

/* Иконки вправо */
.minerva-user-navigation {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
}