73 lines
1.1 KiB
CSS
73 lines
1.1 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #1d1f21;
|
|
color: #c5c6c7;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
button {
|
|
padding: 0.75rem 2rem;
|
|
background-color: #66fcf1;
|
|
border: none;
|
|
border-radius: 5px;
|
|
color: #1f2833;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #45a29e;
|
|
}
|
|
|
|
footer {
|
|
position: absolute;
|
|
bottom: 1rem;
|
|
font-size: 0.8rem;
|
|
color: #777;
|
|
}
|
|
|
|
footer a {
|
|
color: #66fcf1;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
|
|
div {
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 30px;
|
|
gap: 10px;
|
|
}
|
|
|
|
textarea {
|
|
background-color: #333;
|
|
color: #fff;
|
|
border: 1px solid #555;
|
|
padding: 10px;
|
|
width: 400px;
|
|
height: 150px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
textarea::placeholder {
|
|
color: #bbb;
|
|
}
|