-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
49 lines (46 loc) · 826 Bytes
/
index.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
* {
box-sizing: border-box;
}
.flickity-page-dots {
visibility:hidden;
}
.carousel1 {
background: transparent;
}
.myLogo{
position: absolute;
width: 30%;
top: 28px;
right: 35px;
color: white;
}
.flickity-prev-next-button.previous {
left: 10px;
background-color: transparent;
}
.flickity-prev-next-button.next {
right: 10px;
background-color: transparent;
}
.flickity-button-icon {
background-color: transparent;
color: white;
}
.carousel-cell {
width: 150px;
height: 200px;
margin: 10px;
background-size: cover;
background-position: center;
border-radius: 5px;
counter-increment: carousel-cell;
}
/* cell number */
.carousel-cell:before {
display: block;
text-align: center;
content: img;
line-height: 150px;
font-size: 80px;
color: white;
}