80 lines
1.3 KiB
CSS
80 lines
1.3 KiB
CSS
.page {
|
|
position: relative;
|
|
height: fit-content;
|
|
min-height: 100vh;
|
|
flex: auto;
|
|
/* max-height: -webkit-fill-available; */
|
|
background-color: #000;
|
|
color: #fff;
|
|
overflow-y: scroll;
|
|
padding-bottom: 180px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
align-items: center;
|
|
}
|
|
|
|
.loading-name {
|
|
color: #fff;
|
|
}
|
|
|
|
.sign-image {
|
|
width: 100%;
|
|
height: 446px;
|
|
color: #fd433f;
|
|
border-radius: 17px;
|
|
background-color: #000;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.text {
|
|
font-size: 18px;
|
|
line-height: 22px;
|
|
font-weight: 400;
|
|
padding: 0 8px;
|
|
text-align: left;
|
|
}
|
|
|
|
.cross-container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.cross {
|
|
width: 24px;
|
|
height: 24px;
|
|
/* border: solid 2px #bdbdbd; */
|
|
border-radius: 100%;
|
|
rotate: 45deg;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cross::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 20px;
|
|
height: 2px;
|
|
background-color: #bdbdbd;
|
|
}
|
|
|
|
.cross::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 2px;
|
|
height: 20px;
|
|
background-color: #bdbdbd;
|
|
}
|