-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
executable file
·48 lines (46 loc) · 1016 Bytes
/
main.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=Raleway");
@import url("https://fonts.googleapis.com/css?family=Suez+One");
@import url("https://fonts.googleapis.com/css?family=Abril+Fatface|Bungee|Lobster");
@keyframes moveSlideshowR {
100% {
transform: translateX(100%);
/* transform: translateX(); */
}
20% {
transform: translateX(-100%);
}
}
@keyframes moveSlideshowL {
90% {
transform: translateX(-100%);
}
50% {
transform: translateX(100%);
}
}
.lineOne {
width: 100%;
height: 2px;
margin-top: 10px;
margin-bottom: 10px;
background: linear-gradient(
to right,
rgba(48, 43, 99, 0),
rgba(48, 43, 99, 0),
rgba(48, 43, 99, 1)
);
animation: 15s moveSlideshowR linear infinite;
}
.lineTwo {
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
height: 2px;
background: linear-gradient(
to right,
rgba(43, 99, 60, 1),
rgba(43, 99, 60, 0),
rgba(43, 99, 60, 0)
);
animation: 15s moveSlideshowL linear infinite;
}