Нет описания правки |
(Эффект падающего снега) Метка: отменено |
||
Строка 7: | Строка 7: | ||
.page-Заглавная_страница .citizen-body-container { | .page-Заглавная_страница .citizen-body-container { | ||
margin: 0!important; | margin: 0!important; | ||
} | |||
.snowflake { | |||
position: fixed; | |||
top: -10px; | |||
color: white; | |||
z-index: 9999; | |||
user-select: none; | |||
pointer-events: none; | |||
animation: fall linear; | |||
} | |||
@keyframes fall { | |||
to { | |||
transform: translateY(100vh); | |||
} | |||
} | } |
Версия от 22:16, 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; color: white; z-index: 9999; user-select: none; pointer-events: none; animation: fall linear; } @keyframes fall { to { transform: translateY(100vh); } }