Update README.md
Browse files
README.md
CHANGED
@@ -130,6 +130,54 @@ body {
|
|
130 |
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
|
131 |
}
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
.detail {
|
134 |
display: flex;
|
135 |
align-items: center;
|
|
|
130 |
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
|
131 |
}
|
132 |
|
133 |
+
.trendy-feature h1 {
|
134 |
+
font-size: 36px;
|
135 |
+
margin-bottom: 20px;
|
136 |
+
color: #333;
|
137 |
+
}
|
138 |
+
|
139 |
+
.carousel {
|
140 |
+
position: relative;
|
141 |
+
width: 100%;
|
142 |
+
max-width: 600px;
|
143 |
+
margin: auto;
|
144 |
+
overflow: hidden;
|
145 |
+
}
|
146 |
+
|
147 |
+
.carousel-inner {
|
148 |
+
display: flex;
|
149 |
+
width: 100%;
|
150 |
+
transition: transform 0.5s ease;
|
151 |
+
}
|
152 |
+
|
153 |
+
.carousel-item {
|
154 |
+
min-width: 100%;
|
155 |
+
box-sizing: border-box;
|
156 |
+
}
|
157 |
+
|
158 |
+
.carousel img {
|
159 |
+
width: 100%;
|
160 |
+
display: block;
|
161 |
+
}
|
162 |
+
|
163 |
+
.carousel-controls {
|
164 |
+
position: absolute;
|
165 |
+
top: 50%;
|
166 |
+
width: 100%;
|
167 |
+
display: flex;
|
168 |
+
justify-content: space-between;
|
169 |
+
transform: translateY(-50%);
|
170 |
+
}
|
171 |
+
|
172 |
+
.carousel-control-prev,
|
173 |
+
.carousel-control-next {
|
174 |
+
background-color: rgba(0, 0, 0, 0.5);
|
175 |
+
color: white;
|
176 |
+
border: none;
|
177 |
+
padding: 10px;
|
178 |
+
cursor: pointer;
|
179 |
+
}
|
180 |
+
|
181 |
.detail {
|
182 |
display: flex;
|
183 |
align-items: center;
|