Spaces:
Running
Running
Update styles.css
Browse files- styles.css +8 -2
styles.css
CHANGED
@@ -8,8 +8,9 @@ body {
|
|
8 |
font-family: 'Arial', sans-serif;
|
9 |
background: #000;
|
10 |
color: #fff;
|
11 |
-
overflow: hidden;
|
12 |
position: relative;
|
|
|
13 |
}
|
14 |
|
15 |
.cosmo-bg {
|
@@ -90,7 +91,7 @@ header {
|
|
90 |
display: flex;
|
91 |
align-items: center;
|
92 |
justify-content: space-between;
|
93 |
-
|
94 |
flex-wrap: wrap;
|
95 |
gap: 5rem;
|
96 |
}
|
@@ -219,6 +220,7 @@ header {
|
|
219 |
.hero {
|
220 |
flex-direction: column;
|
221 |
text-align: center;
|
|
|
222 |
}
|
223 |
|
224 |
.cosmo-product {
|
@@ -239,6 +241,10 @@ header {
|
|
239 |
font-size: 1.6rem;
|
240 |
}
|
241 |
|
|
|
|
|
|
|
|
|
242 |
.cosmo-pod {
|
243 |
width: 90%;
|
244 |
}
|
|
|
8 |
font-family: 'Arial', sans-serif;
|
9 |
background: #000;
|
10 |
color: #fff;
|
11 |
+
overflow-x: hidden; /* Только горизонтальная прокрутка отключена */
|
12 |
position: relative;
|
13 |
+
min-height: 100vh; /* Гарантирует прокрутку при необходимости */
|
14 |
}
|
15 |
|
16 |
.cosmo-bg {
|
|
|
91 |
display: flex;
|
92 |
align-items: center;
|
93 |
justify-content: space-between;
|
94 |
+
padding: 4rem 0; /* Уменьшаем высоту для прокрутки */
|
95 |
flex-wrap: wrap;
|
96 |
gap: 5rem;
|
97 |
}
|
|
|
220 |
.hero {
|
221 |
flex-direction: column;
|
222 |
text-align: center;
|
223 |
+
padding: 2rem 0;
|
224 |
}
|
225 |
|
226 |
.cosmo-product {
|
|
|
241 |
font-size: 1.6rem;
|
242 |
}
|
243 |
|
244 |
+
.features {
|
245 |
+
padding: 4rem 0;
|
246 |
+
}
|
247 |
+
|
248 |
.cosmo-pod {
|
249 |
width: 90%;
|
250 |
}
|