MediaWiki:Common.css: различия между версиями
Страница интерфейса MediaWiki
Дополнительные действия
Admin (обсуждение | вклад) Нет описания правки |
Admin (обсуждение | вклад) Нет описания правки |
||
| Строка 191: | Строка 191: | ||
width: 100%; | width: 100%; | ||
padding: 15px; | padding: 15px; | ||
} | |||
/* Анимированный фон */ | |||
@keyframes animateBackground { | |||
from { | |||
background-position: 0 0; | |||
} | |||
to { | |||
background-position: -960px 0; | |||
} | |||
} | |||
.space-bg, | |||
.stars-bg, | |||
.specs-bg { | |||
position: fixed; | |||
width: 100%; | |||
height: 100%; | |||
top: 0; | |||
left: 0; | |||
background-repeat: repeat; | |||
} | |||
.space-bg { | |||
background-image: url("../images/4/4a/space-bg.png"); | |||
animation: animateBackground 120s linear infinite; | |||
z-index: -7; | |||
} | |||
.stars-bg { | |||
background-image: url("../images/f/fb/stars-bg.png"); | |||
animation: animateBackground 60s linear infinite; | |||
z-index: -6; | |||
} | |||
.specs-bg { | |||
background-image: url("../images/1/10/specs-bg.png"); | |||
animation: animateBackground 30s linear infinite; | |||
z-index: -4; | |||
} | } | ||