-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (73 loc) · 1.18 KB
/
Copy pathstyle.css
File metadata and controls
73 lines (73 loc) · 1.18 KB
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
66
67
68
69
70
71
72
73
* {
padding: 0px;
margin: 0px;
}
#yy-Carousel-container {
background-color: antiquewhite;
position: relative;
margin: 0 auto;
overflow: hidden;
}
#yy-Carousel {
transition-duration: 500ms;
height: 100%;
width: 700%;
background-color: rgba(212, 247, 188, 0.5);
}
.yy-Carousel-Item {
float: left;
display: flex;
justify-content: center;
align-items: center;
font-size: 100px;
height: 100%;
background-color: rgba(241, 122, 222, 0.5);
}
.color1 {
background-color: pink;
}
.color2 {
background-color: #ebc0ff;
}
.color3 {
background-color: #e76c81;
}
.color4 {
background-color: #61b9db;
}
.color5 {
background-color: #42c5e6;
}
.color6 {
background-color: #79d146;
}
.color7 {
background-color: #dbbf3f;
}
.yy-Carousel-control {
height: 100%;
width: 100%;
position: absolute;
top: 0px;
}
.yy-Carousel-control-prev {
height: 100%;
position: absolute;
left: 0px;
top: 0px;
display: flex;
justify-content: center;
align-items: center;
}
.yy-Carousel-control-next {
height: 100%;
position: absolute;
right: 0px;
top: 0px;
display: flex;
justify-content: center;
align-items: center;
}
.yy-Carousel-control-icon {
color: #000000;
}