-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (54 loc) · 1.06 KB
/
style.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
body {
margin: 0;
}
.container {
width: 100%;
}
.container div {
width: 100%;
height: 100px;
-webkit-animation: left-right 2s forwards;
animation: left-right 2s forwards;
}
.container div:nth-child(7n + 1) {
background-color: #D4145A;
}
.container div:nth-child(7n + 2) {
background-color: #FBB03B;
}
.container div:nth-child(7n + 3) {
background-color: #662D8C;
}
.container div:nth-child(7n + 4) {
background-color: #B066FE;
}
.container div:nth-child(7n + 5) {
background-color: #312A6C;
}
.container div:nth-child(7n + 6) {
background-color: #00537E;
}
.container div:nth-child(7n + 7) {
background-color: #4F00BC;
}
@-webkit-keyframes left-right {
0% {
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
100% {
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
}
@keyframes left-right {
0% {
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
100% {
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
}
/*# sourceMappingURL=style.css.map */