File size: 766 Bytes
62161e8
 
 
 
 
 
 
 
 
144174f
 
62161e8
8a57b44
 
62161e8
 
6f8c2f3
8a57b44
 
144174f
 
62161e8
 
 
144174f
 
62161e8
8a57b44
 
 
62161e8
 
 
 
 
6f8c2f3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-container {
  width: 100%; /* 전체 너비 사용 */
  height: 100%; /* 전체 높이 사용 */
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center; /* 가운데 정렬 */
  align-items: center; /* 가운데 정렬 */
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 70vw; /* 뷰포트 너비의 70% */
  height: 60vh; /* 뷰포트 높이의 60% */
  margin: 0 15px; /* 슬라이드 사이 간격 조정 */
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}