Шаблон:Реклама текст/styles.css: различия между версиями
Материал из Space Station 14 Вики
Aeonorien (обсуждение | вклад) Отмена версии 746325, сделанной Aeonorien (обсуждение) Метка: отмена |
Aeonorien (обсуждение | вклад) Нет описания правки |
||
| Строка 10: | Строка 10: | ||
font-weight: 800; | font-weight: 800; | ||
letter-spacing: 0.08em; | letter-spacing: 0.08em; | ||
color: # | color: #ffffff; | ||
} | } | ||
.aeon-fly-top, | .aeon-fly-top, | ||
.aeon-fly-bot { | .aeon-fly-bot { | ||
| Строка 24: | Строка 24: | ||
animation-iteration-count: infinite; | animation-iteration-count: infinite; | ||
} | } | ||
.aeon-fly-top { | .aeon-fly-top { | ||
top: 8px; | top: 8px; | ||
animation-name: aeon-down; | animation-name: aeon-down; | ||
} | } | ||
.aeon-fly-bot { | .aeon-fly-bot { | ||
top: 48px; | top: 48px; | ||
animation-name: aeon-up; | animation-name: aeon-up; | ||
} | } | ||
@keyframes aeon-down { | @keyframes aeon-down { | ||
0% { opacity: 0; transform: translateY(-80px); } | 0% { opacity: 0; transform: translateY(-80px); } | ||
| Строка 39: | Строка 42: | ||
100% { opacity: 0; transform: translateY(-80px); } | 100% { opacity: 0; transform: translateY(-80px); } | ||
} | } | ||
@keyframes aeon-up { | @keyframes aeon-up { | ||
0% { opacity: 0; transform: translateY(80px); } | 0% { opacity: 0; transform: translateY(80px); } | ||
Версия от 23:27, 22 сентября 2026
.aeon-fly {
position: relative;
display: block;
height: 90px;
margin: 20px 0;
background: none;
border: none;
text-align: center;
font-size: 36px;
font-weight: 800;
letter-spacing: 0.08em;
color: #ffffff;
}
.aeon-fly-top,
.aeon-fly-bot {
position: absolute;
left: 0;
width: 100%;
white-space: nowrap;
background: none;
animation-duration: 8s;
animation-timing-function: cubic-bezier(0.16, 0.84, 0.22, 1);
animation-iteration-count: infinite;
}
.aeon-fly-top {
top: 8px;
animation-name: aeon-down;
}
.aeon-fly-bot {
top: 48px;
animation-name: aeon-up;
}
@keyframes aeon-down {
0% { opacity: 0; transform: translateY(-80px); }
12% { opacity: 1; transform: translateY(0); }
70% { opacity: 1; transform: translateY(0); }
82% { opacity: 0; transform: translateY(-80px); }
100% { opacity: 0; transform: translateY(-80px); }
}
@keyframes aeon-up {
0% { opacity: 0; transform: translateY(80px); }
12% { opacity: 1; transform: translateY(0); }
70% { opacity: 1; transform: translateY(0); }
82% { opacity: 0; transform: translateY(80px); }
100% { opacity: 0; transform: translateY(80px); }
}