Update README.md
Browse files
README.md
CHANGED
@@ -136,6 +136,7 @@ body {
|
|
136 |
color: #333;
|
137 |
}
|
138 |
|
|
|
139 |
.carousel {
|
140 |
position: relative;
|
141 |
width: 100%;
|
@@ -177,6 +178,26 @@ body {
|
|
177 |
padding: 10px;
|
178 |
cursor: pointer;
|
179 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
|
181 |
.detail {
|
182 |
display: flex;
|
|
|
136 |
color: #333;
|
137 |
}
|
138 |
|
139 |
+
/* Carousel Styles */
|
140 |
.carousel {
|
141 |
position: relative;
|
142 |
width: 100%;
|
|
|
178 |
padding: 10px;
|
179 |
cursor: pointer;
|
180 |
}
|
181 |
+
|
182 |
+
.dot-container {
|
183 |
+
text-align: center;
|
184 |
+
padding: 10px;
|
185 |
+
}
|
186 |
+
|
187 |
+
.dot {
|
188 |
+
height: 15px;
|
189 |
+
width: 15px;
|
190 |
+
margin: 0 2px;
|
191 |
+
background-color: #bbb;
|
192 |
+
border-radius: 50%;
|
193 |
+
display: inline-block;
|
194 |
+
transition: background-color 0.6s ease;
|
195 |
+
}
|
196 |
+
|
197 |
+
.active,
|
198 |
+
.dot:hover {
|
199 |
+
background-color: #717171;
|
200 |
+
}
|
201 |
|
202 |
.detail {
|
203 |
display: flex;
|