34 lines
554 B
CSS
34 lines
554 B
CSS
|
|
html,body{
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
html{
|
||
|
|
background: url(../img/back.png) no-repeat 0 0 / 100% 100% transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layout{
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: start;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
#close-btn{
|
||
|
|
width: 100%;
|
||
|
|
height: 60px;
|
||
|
|
justify-content:end;
|
||
|
|
padding: 20px;
|
||
|
|
}
|
||
|
|
#close-btn img{
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
#title{
|
||
|
|
width: 100%;
|
||
|
|
height: 60px;
|
||
|
|
font-size: 24px;
|
||
|
|
letter-spacing: 6px;
|
||
|
|
color: #fff !important;
|
||
|
|
justify-content:center;
|
||
|
|
}
|