-
Notifications
You must be signed in to change notification settings - Fork 0
/
transition.css
48 lines (41 loc) · 920 Bytes
/
transition.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@import url('https://fonts.googleapis.com/css?family=Roboto:700');
#containers {
color:rgb(255, 255, 255);
font-size:36px;
font-weight:bold;
padding-top:200px;
position:fixed;
width:100%;
bottom:60%;
display:flex;
/* margin-left: 194px; */
flex-direction: column;
}
#flip {
height:50px;
overflow:hidden;
position: absolute;
top: 27vh;
left: -1.5vw;
}
#flip > div > div {
color:rgb(13, 5, 242);
padding:4px 12px;
height:45px;
margin-bottom:45px;
display:inline-block;
margin-left: 67px;
}
#flip div:first-child {
animation: show 5s linear infinite;
}
@keyframes show {
0% {margin-top:-270px;}
5% {margin-top:-180px;}
33% {margin-top:-180px;}
38% {margin-top:-90px;}
66% {margin-top:-90px;}
71% {margin-top:0px;}
99.99% {margin-top:0px;}
100% {margin-top:-270px;}
}