36 lines
478 B
CSS
36 lines
478 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: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
header{
|
||
|
|
z-index:300;
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
body{
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*스크롤기능 있지만 안보이게*/
|
||
|
|
body::-webkit-scrollbar {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
#logo{
|
||
|
|
z-index:300;
|
||
|
|
}
|
||
|
|
|
||
|
|
footer{
|
||
|
|
z-index:200;
|
||
|
|
}
|