File size: 1,080 Bytes
b653f91 |
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 51 52 53 54 55 |
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f0f2f5;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
background-color: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 500px;
}
h1 {
text-align: center;
color: #1c1e21;
}
textarea {
width: 100%;
padding: 0.5rem;
border: 1px solid #dddfe2;
border-radius: 6px;
margin-bottom: 1rem;
font-size: 1rem;
resize: vertical;
}
select, button {
width: 100%;
padding: 0.75rem;
border-radius: 6px;
border: 1px solid #dddfe2;
font-size: 1rem;
margin-bottom: 1rem;
}
button {
background-color: #1877f2;
color: #fff;
border: none;
cursor: pointer;
}
button:hover {
background-color: #166fe5;
}
#output {
margin-top: 1rem;
padding: 1rem;
background-color: #f0f2f5;
border-radius: 6px;
min-height: 50px;
}
|