File size: 731 Bytes
e90ef08 dde25fa e90ef08 dde25fa 3cda448 e90ef08 dde25fa e90ef08 dde25fa e90ef08 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: sans-serif;
}
html,
body {
height: 100%;
color: #000;
background: #fff;
}
body {
padding: 32px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#status {
padding: 10px 12px;
background: cornsilk;
border: 2px dashed #ffdb4f;
border-radius: 8px;
font-size: 15px;
width: 100%;
text-align: center;
}
button {
padding: 10px 12px;
border-radius: 4px;
background: seagreen;
border: none;
margin: 10px 15px;
font-size: 15px;
font-weight: 600;
}
textarea {
outline: none;
font-size: 15px;
font-weight: 500;
border-radius: 6px;
padding: 10px 12px;
margin-top: 1.5rem;
} |