-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarouselStyle.css
More file actions
107 lines (104 loc) · 1.81 KB
/
carouselStyle.css
File metadata and controls
107 lines (104 loc) · 1.81 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.carousel {
position: relative;
width: 70%;
height: 700px;
margin: 0 auto;
display: flex;
flex-direction: column;
}
.carousel_track-container {
/* padding: 10px; */
height: 100%;
position: relative;
overflow: hidden;
}
.carousel_track {
padding: 0;
margin: 0;
list-style: none;
position: relative;
height: 100%;
transition: transform 250ms ease-in;
}
.carousel_slide {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
padding: 0px 30px;
}
.tslide {
position: absolute;
display: flex;
top: 0;
bottom: 0;
width: 90%;
height: 100%;
margin: auto;
}
.tslide > div {
display: flex;
flex-direction: column;
width: 50%;
margin: auto;
}
.tslide > div > div {
width: 75%;
height: 80%;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
padding: 150px 20px 25px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
text-align: left;
}
.quotes_img {
width: 10%;
position: relative;
top: 60px;
left: 270px;
}
.person_img {
position: relative;
top: 103px;
left: 70px;
width: 30%;
border-top-right-radius: 40px;
border-bottom-left-radius: 40px;
}
.tslide > div > div > :nth-child(1) {
font-size: 22px;
line-height: 30.8px;
font-family: "Lato", sans-serif;
}
.tslide > div > div > :nth-child(2) {
font-size: 20px;
line-height: 28px;
font-weight: 600;
font-family: "Lato", sans-serif;
}
.tslide > div > div > :nth-child(3) {
font-size: 20px;
line-height: 28px;
font-family: "Lato", sans-serif;
}
.carousel_nav {
display: flex;
justify-content: center;
margin-top: 20px;
padding: 10px 0;
}
.carousel_indicator {
border: 0;
border-radius: 50%;
width: 15px;
height: 15px;
background: grey;
margin: 0 12px;
}
.carousel_indicator.current_slide {
width: 15px;
height: 15px;
background: #01b289;
}