abyss/static/style.css

73 lines
1.1 KiB
CSS
Raw Normal View History

2024-09-18 10:26:32 -03:00
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;
}
2024-09-24 13:23:46 -03:00
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;
2024-10-15 15:35:45 -03:00
align-items: center;
}
2024-10-15 15:35:45 -03:00
form {
display: flex;
flex-direction: column;
align-items: center;
2024-10-15 15:35:45 -03:00
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;
}