MediaWiki:Test.css: различия между версиями

Страница интерфейса MediaWiki
Нет описания правки
Нет описания правки
 
(не показано 112 промежуточных версий этого же участника)
Строка 1: Строка 1:
/* Контейнер списка */
body:before {
.collapsible-container {
    content: "";
     margin: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/3/36/Snowflakes_falling_transparent.gif");
    background-repeat: repeat;
    pointer-events: none;
    opacity: 0.35;
    z-index: 2;
     animation: snowmove 60s linear infinite;
}
}


/* Стиль кнопки-заголовка */
@keyframes snowmove {
.collapsible-header {
     from { background-position: 0 0; }
     cursor: pointer;
     to { background-position: 500px 1000px; }
    padding: 8px 15px;
    background: #f8f9fa;
    border: 1px solid #a2a9b1;
    border-radius: 4px;
     display: inline-block;
    user-select: none;
}
}


/* Иконка стрелки */
h1, h2, h3, h4, h5 {
.collapsible-arrow::after {
     text-shadow: 0 0 6px rgba(179, 229, 252, 0.7), 0 0 12px rgba(179, 229, 252, 0.4);
     content: '▼';
     transition: text-shadow 0.3s;
     margin-left: 8px;
    font-size: 0.9em;
}
}


/* Состояние развернуто */
h1:hover, h2:hover, h3:hover, h4:hover, h5:hover {
.collapsible-header.expanded .collapsible-arrow::after {
     text-shadow: 0 0 12px rgba(179, 229, 252, 0.9), 0 0 20px rgba(179, 229, 252, 0.6);
     content: '▲';
}
}


/* Содержимое списка (скрыто по умолчанию) */
a, a:visited {
.collapsible-content {
     transition: color 0.3s, text-shadow 0.3s;
     display: none;
    margin-top: 5px;
    padding-left: 20px;
}
}


/* Элементы списка */
a:hover {
.collapsible-item {
     color: #b3e5fc !important;
     margin: 5px 0;
     text-shadow: 0 0 6px #b3e5fc;
    display: flex;
     align-items: center;
}
}


/* Изображения в списке */
.wikitable {
.collapsible-item img {
    border-color: rgba(179, 229, 252, 0.6) !important;
     margin-right: 8px;
    border-radius: 6px;
}
 
.wikitable th {
    background: rgba(179, 229, 252, 0.1);
}
 
.mw-page-title-main:before {
     content: " ";
}
 
.mw-page-title-main:after {
    content: " ";
}
}

Текущая версия от 08:23, 13 ноября 2025

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/3/36/Snowflakes_falling_transparent.gif");
    background-repeat: repeat;
    pointer-events: none;
    opacity: 0.35;
    z-index: 2;
    animation: snowmove 60s linear infinite;
}

@keyframes snowmove {
    from { background-position: 0 0; }
    to { background-position: 500px 1000px; }
}

h1, h2, h3, h4, h5 {
    text-shadow: 0 0 6px rgba(179, 229, 252, 0.7), 0 0 12px rgba(179, 229, 252, 0.4);
    transition: text-shadow 0.3s;
}

h1:hover, h2:hover, h3:hover, h4:hover, h5:hover {
    text-shadow: 0 0 12px rgba(179, 229, 252, 0.9), 0 0 20px rgba(179, 229, 252, 0.6);
}

a, a:visited {
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    color: #b3e5fc !important;
    text-shadow: 0 0 6px #b3e5fc;
}

.wikitable {
    border-color: rgba(179, 229, 252, 0.6) !important;
    border-radius: 6px;
}

.wikitable th {
    background: rgba(179, 229, 252, 0.1);
}

.mw-page-title-main:before {
    content: " ";
}

.mw-page-title-main:after {
    content: " ";
}