Files
Discord-Bot-Builder/styles/login.css
HerpieDerpie@example.com 3443ed8d3c changed up the styling a bit
2024-01-11 11:56:18 +01:00

54 lines
946 B
CSS
Executable File

body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: url("./background.png");
background-position: center;
background-size: cover;
}
.login-container {
background-color: var(--medium-gray);
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
padding: 30px;
text-align: center;
color: var(--light-gray);
width: 300px;
}
h2 {
margin-bottom: 20px;
}
form {
display: flex;
flex-direction: column;
}
label {
margin-bottom: 8px;
}
input {
padding: 10px;
margin-bottom: 16px;
border: 1px solid var(--discord-blue);
border-radius: 4px;
background-color: var(--dark-steel);
color: white;
}
button {
padding: 12px;
background-color: var(--discord-blue);
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: var(--dark-steel);
}