46 lines
621 B
CSS
46 lines
621 B
CSS
/*로그인 폼*/
|
|
.form-signin{
|
|
width: 100%;
|
|
max-width: 330px;
|
|
padding: 15px;
|
|
margin: auto;
|
|
position: absolute;
|
|
z-index: 200;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
border-radius: 20px;
|
|
}
|
|
|
|
header{
|
|
z-index:300;
|
|
background-color: white;
|
|
}
|
|
|
|
body{
|
|
overflow: hidden;
|
|
}
|
|
|
|
/*스크롤기능 있지만 안보이게*/
|
|
body::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
#logo{
|
|
z-index:300;
|
|
}
|
|
|
|
footer{
|
|
z-index:200;
|
|
}
|
|
|
|
#img02{
|
|
transition: all 1s ease-out;
|
|
z-index:100;
|
|
}
|
|
|
|
#img02:hover{
|
|
transform: scale(1.1, 1.1);
|
|
transition: all 1s ease-out;
|
|
}
|