The page is not fill width, do full width
Browse files
style.css
CHANGED
|
@@ -1,40 +1,49 @@
|
|
| 1 |
|
| 2 |
body {
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
}
|
| 7 |
|
| 8 |
/* Alternate section backgrounds */
|
| 9 |
section:nth-child(odd) {
|
| 10 |
-
|
| 11 |
}
|
| 12 |
|
| 13 |
section:nth-child(even) {
|
| 14 |
-
|
| 15 |
}
|
| 16 |
-
|
| 17 |
/* Darker background for footer */
|
| 18 |
footer {
|
| 19 |
background-color: #0f172a;
|
| 20 |
color: white;
|
| 21 |
}
|
| 22 |
-
|
| 23 |
/* Dark cards for contrast */
|
| 24 |
.card {
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
| 28 |
}
|
| 29 |
-
|
| 30 |
/* Darker header */
|
| 31 |
header {
|
| 32 |
-
|
| 33 |
-
|
|
|
|
| 34 |
}
|
| 35 |
/* Banner image overlay effect */
|
| 36 |
.pattern-navy.relative {
|
| 37 |
-
|
|
|
|
| 38 |
}
|
| 39 |
h1 {
|
| 40 |
font-size: 16px;
|
|
|
|
| 1 |
|
| 2 |
body {
|
| 3 |
+
margin: 0;
|
| 4 |
+
padding: 0;
|
| 5 |
+
width: 100%;
|
| 6 |
+
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 7 |
+
background-color: #f8fafc;
|
| 8 |
+
}
|
| 9 |
+
/* Full width sections */
|
| 10 |
+
section {
|
| 11 |
+
width: 100%;
|
| 12 |
+
box-sizing: border-box;
|
| 13 |
}
|
| 14 |
|
| 15 |
/* Alternate section backgrounds */
|
| 16 |
section:nth-child(odd) {
|
| 17 |
+
background-color: white;
|
| 18 |
}
|
| 19 |
|
| 20 |
section:nth-child(even) {
|
| 21 |
+
background-color: #f1f5f9;
|
| 22 |
}
|
|
|
|
| 23 |
/* Darker background for footer */
|
| 24 |
footer {
|
| 25 |
background-color: #0f172a;
|
| 26 |
color: white;
|
| 27 |
}
|
|
|
|
| 28 |
/* Dark cards for contrast */
|
| 29 |
.card {
|
| 30 |
+
background-color: white;
|
| 31 |
+
border: 1px solid #e2e8f0;
|
| 32 |
+
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
| 33 |
+
width: 100%;
|
| 34 |
+
max-width: 100%;
|
| 35 |
+
box-sizing: border-box;
|
| 36 |
}
|
|
|
|
| 37 |
/* Darker header */
|
| 38 |
header {
|
| 39 |
+
background-color: white;
|
| 40 |
+
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
| 41 |
+
width: 100%;
|
| 42 |
}
|
| 43 |
/* Banner image overlay effect */
|
| 44 |
.pattern-navy.relative {
|
| 45 |
+
background-blend-mode: overlay;
|
| 46 |
+
width: 100%;
|
| 47 |
}
|
| 48 |
h1 {
|
| 49 |
font-size: 16px;
|