oddhtml / style.css
chohj06ms's picture
Update style.css
8a57b44 verified
raw
history blame
No virus
766 Bytes
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;
}