bajrangCoder's picture
fixed styling
dde25fa
* {
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;
}