Commit ·
dfa674a
1
Parent(s): 01bcfe2
Enlarge hero section and video container
Browse files
style.css
CHANGED
|
@@ -62,8 +62,8 @@ a:hover { color: var(--ha-blue-light); }
|
|
| 62 |
display: flex;
|
| 63 |
justify-content: space-between;
|
| 64 |
align-items: center;
|
| 65 |
-
max-width:
|
| 66 |
-
margin: 0 auto
|
| 67 |
position: relative;
|
| 68 |
z-index: 1;
|
| 69 |
}
|
|
@@ -90,9 +90,9 @@ a:hover { color: var(--ha-blue-light); }
|
|
| 90 |
|
| 91 |
.hero-grid {
|
| 92 |
display: grid;
|
| 93 |
-
grid-template-columns: 1fr
|
| 94 |
-
gap:
|
| 95 |
-
max-width:
|
| 96 |
margin: 0 auto;
|
| 97 |
align-items: center;
|
| 98 |
position: relative;
|
|
@@ -194,11 +194,10 @@ a:hover { color: var(--ha-blue-light); }
|
|
| 194 |
.video-container {
|
| 195 |
position: relative;
|
| 196 |
width: 100%;
|
| 197 |
-
max-width: 800px;
|
| 198 |
aspect-ratio: 16 / 9;
|
| 199 |
border-radius: var(--card-radius);
|
| 200 |
overflow: hidden;
|
| 201 |
-
box-shadow: 0
|
| 202 |
border: 1px solid var(--border-color);
|
| 203 |
}
|
| 204 |
|
|
|
|
| 62 |
display: flex;
|
| 63 |
justify-content: space-between;
|
| 64 |
align-items: center;
|
| 65 |
+
max-width: 1400px;
|
| 66 |
+
margin: 0 auto 40px;
|
| 67 |
position: relative;
|
| 68 |
z-index: 1;
|
| 69 |
}
|
|
|
|
| 90 |
|
| 91 |
.hero-grid {
|
| 92 |
display: grid;
|
| 93 |
+
grid-template-columns: 1fr 1.2fr;
|
| 94 |
+
gap: 48px;
|
| 95 |
+
max-width: 1400px;
|
| 96 |
margin: 0 auto;
|
| 97 |
align-items: center;
|
| 98 |
position: relative;
|
|
|
|
| 194 |
.video-container {
|
| 195 |
position: relative;
|
| 196 |
width: 100%;
|
|
|
|
| 197 |
aspect-ratio: 16 / 9;
|
| 198 |
border-radius: var(--card-radius);
|
| 199 |
overflow: hidden;
|
| 200 |
+
box-shadow: 0 16px 50px rgba(3, 169, 244, 0.25);
|
| 201 |
border: 1px solid var(--border-color);
|
| 202 |
}
|
| 203 |
|