|
|
| Строка 1: |
Строка 1: |
| /* === ОСНОВНЫЕ ЦВЕТА === */
| |
|
| |
|
| /* Фон всей страницы */
| |
| body {
| |
| background: #f0f0f0; /* ваш цвет */
| |
| }
| |
|
| |
| /* Левая колонка (меню) */
| |
| #column-one {
| |
| background: #e0e0e0; /* ваш цвет */
| |
| }
| |
|
| |
| /* Блоки меню (portlet) */
| |
| .portlet {
| |
| background: transparent;
| |
| }
| |
| .portlet h3 {
| |
| background: #c0c0c0;
| |
| color: #000;
| |
| }
| |
| .pBody {
| |
| background: #fff;
| |
| border-color: #aaa;
| |
| }
| |
|
| |
| /* Основной контент */
| |
| #content, .mw-body {
| |
| background: aqua; /* ваш aqua */
| |
| color: black; /* ваш цвет текста */
| |
| border-color: #aaa;
| |
| }
| |
|
| |
| /* Заголовки */
| |
| h1, h2, h3, h4, h5, h6 {
| |
| color: #000; /* ваш цвет заголовков */
| |
| border-bottom-color: #aaa;
| |
| }
| |
|
| |
| /* Ссылки */
| |
| a {
| |
| color: #0645ad; /* ваш цвет ссылок */
| |
| }
| |
| a:visited {
| |
| color: #0b0080; /* цвет посещённых */
| |
| }
| |
| a.new {
| |
| color: #ba0000; /* цвет красных ссылок */
| |
| }
| |
|
| |
| /* Шапка (personal tools) */
| |
| #p-personal {
| |
| background: #e0e0e0;
| |
| }
| |
| #p-personal li a {
| |
| color: #0645ad;
| |
| }
| |
|
| |
| /* Табы (статья/обсуждение/править) */
| |
| #p-cactions {
| |
| background: #e0e0e0;
| |
| }
| |
| #p-cactions li a {
| |
| background: #d0d0d0;
| |
| color: #000;
| |
| }
| |
| #p-cactions li.selected a {
| |
| background: aqua; /* под цвет контента */
| |
| }
| |
|
| |
| /* Подвал */
| |
| #footer {
| |
| background: #f0f0f0;
| |
| color: #333;
| |
| border-color: #aaa;
| |
| }
| |
|
| |
| /* Таблицы */
| |
| table {
| |
| background: #fff;
| |
| }
| |
| table.wikitable {
| |
| background: #f9f9f9;
| |
| border-color: #aaa;
| |
| }
| |
| table.wikitable th {
| |
| background: #e0e0e0;
| |
| }
| |