Нет описания правки Метка: отменено |
Нет описания правки Метка: отменено |
||
Строка 9: | Строка 9: | ||
} | } | ||
/* Стили для снежинок */ | |||
.snowflake { | .snowflake { | ||
position: | position: fixed; | ||
top: -10px; | |||
left: 0; | |||
color: white; | |||
z-index: 9999; | |||
animation: fall | user-select: none; | ||
pointer-events: none; | |||
animation: fall linear; | |||
} | } | ||
@keyframes fall { | @keyframes fall { | ||
0% { transform: translateY( | 0% { | ||
100% { transform: translateY(100vh); | 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); } }