mirror of
https://github.com/zhigang1992/pick-web.git
synced 2026-01-12 08:14:26 +08:00
45 lines
549 B
CSS
45 lines
549 B
CSS
html, body
|
|
{
|
|
height: 100%;
|
|
}
|
|
|
|
body.index {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
body.disabled {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.label {
|
|
font-size: 200px;
|
|
}
|
|
|
|
body.edit {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.edit-box {
|
|
width: 100%;
|
|
flex-grow: 9;
|
|
}
|
|
|
|
.submit-button-wrapper {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.submit-button {
|
|
font-size: 60px;
|
|
color: white;
|
|
text-align: center;
|
|
width: 80%;
|
|
border-radius: 10px;
|
|
background-color: #A4BF82;
|
|
}
|