틀:와르샤와/styles.css: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
4번째 줄: 4번째 줄:
}
}
.IM_POG-Section1a {
.IM_POG-Section1a {
     transform: translateX(30%);
     transform: translateX(80%);
transition: transform 1s;
transition: transform 1s;
}
}

2023년 12월 30일 (토) 12:49 판

.IM_POG-Section1 {
    background: rgba(40,40,0,0);
	transition: background 1s;
}
.IM_POG-Section1a {
    transform: translateX(80%);
	transition: transform 1s;
}
.IM_POG-Section1b {
    display:inline-block;
    overflow:hidden;
    transform: translateX(0%);
    height:0px;
    opacity:0;
	transition:opacity 1s, transform 1s, height 1s;
}
.IM_POG-Section1:hover > .IM_POG-Section1a {
    transform: translateX(0%);
}
.IM_POG-Section1:hover > .IM_POG-Section1b {
    transform: translateX(0%);
    height:max-content;
    opacity:1;
}
.IM_POG-Section1:hover {
    background: rgba(0, 0, 0, 0.7);
}