Update index.html
Browse files- index.html +9 -6
index.html
CHANGED
@@ -7,18 +7,21 @@
|
|
7 |
html, body {
|
8 |
margin:0; padding:0;
|
9 |
width:100vw; height:100vh;
|
10 |
-
|
|
|
|
|
|
|
|
|
11 |
}
|
12 |
|
13 |
.grid-container {
|
14 |
display: grid;
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
grid-template-columns: 1fr 2fr 1fr 2fr;
|
19 |
-
/* μΈλ‘λ°©ν₯: 5ν κ· λ± λΆν */
|
20 |
grid-template-rows: repeat(5, 1fr);
|
21 |
-
gap: 0;
|
22 |
}
|
23 |
|
24 |
img, video {
|
|
|
7 |
html, body {
|
8 |
margin:0; padding:0;
|
9 |
width:100vw; height:100vh;
|
10 |
+
display:flex;
|
11 |
+
justify-content:center;
|
12 |
+
align-items:center;
|
13 |
+
background:#000; /* λ°°κ²½μ(μ΅μ
) */
|
14 |
+
overflow:hidden;
|
15 |
}
|
16 |
|
17 |
.grid-container {
|
18 |
display: grid;
|
19 |
+
/* μλ νλ©΄μ κ°λ μ±μ°λ κ²μμ 70% ν¬κΈ°λ‘ μΆμ */
|
20 |
+
width: 70vw;
|
21 |
+
height: 70vh;
|
22 |
grid-template-columns: 1fr 2fr 1fr 2fr;
|
|
|
23 |
grid-template-rows: repeat(5, 1fr);
|
24 |
+
gap: 0;
|
25 |
}
|
26 |
|
27 |
img, video {
|