Открыть главное меню
Строка 1: Строка 1:
 +
/* =========================================
 +
  BARLIVE BRAND STYLE (светлая версия)
 +
  ========================================= */
  
/* Высота шапки */
+
/* Общий фон страницы */
 +
body {
 +
    background: linear-gradient(
 +
        120deg,
 +
        #f7f8fc 0%,
 +
        #eef1ff 50%,
 +
        #f5f6fb 100%
 +
    ) !important;
 +
    color: #1f1f1f !important;
 +
}
 +
 
 +
/* Шапка — светлая */
 
.header-container.header-chrome {
 
.header-container.header-chrome {
     height: 60px !important;
+
    background: #ffffff !important;
 +
    border-bottom: 1px solid #e6e8f5 !important;
 +
     height: 64px !important;
 
}
 
}
  
 
/* Логотип */
 
/* Логотип */
 
.branding-box img {
 
.branding-box img {
     height: 42px !important;
+
     height: 40px !important;
 
     width: auto !important;
 
     width: auto !important;
 
}
 
}
Строка 13: Строка 29:
 
/* Поиск */
 
/* Поиск */
 
.search-box input {
 
.search-box input {
     height: 34px !important;
+
     background: #f3f4fa !important;
     border-radius: 6px !important;
+
    border: 1px solid #e0e3f0 !important;
 +
     border-radius: 10px !important;
 +
    height: 36px !important;
 +
    color: #333 !important;
 
}
 
}
  
/* Немного воздуха между лого и поиском */
+
/* Иконки */
.search-box {
+
.minerva-user-navigation a {
     margin-left: 20px !important;
+
     color: #333 !important;
 
}
 
}
  
/* Поиск сразу после логотипа */
+
/* Заголовки */
.header-container .header {
+
h1, h2, h3 {
     display: flex;
+
     color: #111 !important;
    align-items: center;
 
 
}
 
}
  
.search-box {
+
/* Кнопки */
     margin-left: 16px !important;
+
button,
     margin-right: 0 !important;
+
.mw-ui-button {
 +
     background-color: #c93348 !important;
 +
     border: none !important;
 +
    border-radius: 10px !important;
 +
    color: #fff !important;
 +
    padding: 8px 18px !important;
 
}
 
}
  
.minerva-user-navigation {
+
/* Ссылки */
     margin-left: auto !important; /* иконки остаются справа */
+
a {
 +
     color: #6d85ff !important;
 
}
 
}

Версия 23:42, 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;
}

/* Логотип */
.branding-box img {
    height: 40px !important;
    width: auto !important;
}

/* Поиск */
.search-box input {
    background: #f3f4fa !important;
    border: 1px solid #e0e3f0 !important;
    border-radius: 10px !important;
    height: 36px !important;
    color: #333 !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;
}