aiqtech commited on
Commit
7907c83
Β·
verified Β·
1 Parent(s): 7e596f6

Update index.html

Browse files
Files changed (1) hide show
  1. 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
- overflow:hidden; /* 화면에 λ”± 맞게 ν‘œμ‹œν•˜κ³  슀크둀 μ•ˆ λ‚˜μ˜€λ„λ‘ 함 */
 
 
 
 
11
  }
12
 
13
  .grid-container {
14
  display: grid;
15
- width: 100vw;
16
- height: 100vh;
17
- /* κ°€λ‘œλ°©ν–₯: 이미지(1fr), μ˜μƒ(2fr), 이미지(1fr), μ˜μƒ(2fr) */
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 {