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

Страница интерфейса MediaWiki
Нет описания правки
Метка: отменено
Нет описания правки
Метка: отменено
Строка 9: Строка 9:
}
}


/* Стили для снежинок */
.snowflake {
.snowflake {
     position: absolute;
     position: fixed;
     width: 10px;
     top: -10px;  
     height: 10px;
     left: 0;  
     background-color: white;
     color: white;
     border-radius: 50%;
     z-index: 9999;
     animation: fall 5s infinite;
    user-select: none;
    pointer-events: none;
     animation: fall linear;
}
}


@keyframes fall {
@keyframes fall {
     0% { transform: translateY(-100%); opacity: 1; }
     0% {
     100% { transform: translateY(100vh); opacity: 0; }
        transform: translateY(0);
    }
     100% {
        transform: translateY(100vh);
    }
}
}

Версия от 22:24, 22 декабря 2024

/* Hide title and edit tools on main page */
.page-Заглавная_страница .mw-body-header,
.page-Заглавная_страница .mw-body-footer {
	display: none!important;
}

.page-Заглавная_страница .citizen-body-container {
	margin: 0!important;
}

/* Стили для снежинок */
.snowflake {
    position: fixed;
    top: -10px; 
    left: 0; 
    color: white;
    z-index: 9999;
    user-select: none;
    pointer-events: none;
    animation: fall linear;
}

@keyframes fall {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}