-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (102 loc) · 1.86 KB
/
Copy pathstyle.css
File metadata and controls
115 lines (102 loc) · 1.86 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
108
109
110
111
112
113
114
115
@font-face {
font-family: Inter;
src: url(./Fonts/Inter_24pt-Regular.ttf);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
width: 100%;
}
#main {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background-color: #111;
}
.slider-google {
position: relative;
width: 70%;
height: 80%;
/* background-color: orange; */
}
.ri-arrow-left-s-line {
font-size: 60px;
border: 3px solid #fff;
border-radius: 50%;
position: absolute;
top: 50%;
transform: translate(-50%, -100%);
color: #fff;
padding: 10px;
z-index: 9;
}
.ri-arrow-right-s-line {
font-size: 60px;
border: 3px solid #fff;
border-radius: 50%;
position: absolute;
top: 50%;
right: 0%;
transform: translate(50%, -100%);
color: #fff;
padding: 10px;
z-index: 9;
}
.swiper {
width: 100%;
height: 100%;
}
.swiper-slide {
text-align: center;
font-size: 18px;
/* background: #fff; */
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
gap: 15px;
}
.swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
.swiper-pagination {
position: absolute;
bottom: -10%;
}
.img-container {
width: 100%;
height: 85%;
background-color: rebeccapurple;
border-radius: 40px;
overflow: hidden;
}
.text-container {
color: #fff;
font-family: Inter;
}
.swiper-pagination-bullet {
border: 2px solid #fff;
padding: 5px;
}
.swiper-pagination-bullet-active {
width: 50px;
border-radius: 10px;
background: #aee1f5;
background: linear-gradient(
90deg,
rgba(174, 225, 245, 1) 0%,
rgba(114, 204, 224, 1) 50%,
rgba(39, 135, 204, 1) 100%
);
transition: all 0.5s ease-in-out;
}