Update static/css/index.css
Browse files- static/css/index.css +21 -0
static/css/index.css
CHANGED
|
@@ -89,6 +89,7 @@ header nav ul li a:hover {
|
|
| 89 |
padding: 20px;
|
| 90 |
background-color: #fff;
|
| 91 |
border-radius: 8px;
|
|
|
|
| 92 |
}
|
| 93 |
|
| 94 |
.app-embed h2 {
|
|
@@ -170,3 +171,23 @@ footer .social-links li a {
|
|
| 170 |
footer .social-links li a:hover {
|
| 171 |
color: #2a9d8f;
|
| 172 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 89 |
padding: 20px;
|
| 90 |
background-color: #fff;
|
| 91 |
border-radius: 8px;
|
| 92 |
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
| 93 |
}
|
| 94 |
|
| 95 |
.app-embed h2 {
|
|
|
|
| 171 |
footer .social-links li a:hover {
|
| 172 |
color: #2a9d8f;
|
| 173 |
}
|
| 174 |
+
|
| 175 |
+
/* Responsive Design */
|
| 176 |
+
@media (max-width: 768px) {
|
| 177 |
+
header nav ul {
|
| 178 |
+
flex-direction: column;
|
| 179 |
+
}
|
| 180 |
+
|
| 181 |
+
.cta-button {
|
| 182 |
+
padding: 10px 20px;
|
| 183 |
+
}
|
| 184 |
+
|
| 185 |
+
.app-frame {
|
| 186 |
+
height: 500px;
|
| 187 |
+
}
|
| 188 |
+
|
| 189 |
+
footer .social-links {
|
| 190 |
+
flex-direction: column;
|
| 191 |
+
margin-top: 10px;
|
| 192 |
+
}
|
| 193 |
+
}
|