25 lines
425 B
CSS
25 lines
425 B
CSS
.button {
|
|
width: 100%;
|
|
font-family: Ubuntu, sans-serif;
|
|
font-size: 1.35rem;
|
|
padding: 8px;
|
|
border-radius: 8px;
|
|
border: 2px solid var(--accent);
|
|
background-color: var(--accent-dim);
|
|
color: white;
|
|
}
|
|
|
|
.button:hover {
|
|
filter: brightness(.9);
|
|
}
|
|
|
|
.button:active {
|
|
filter: brightness(.8);
|
|
}
|
|
|
|
.button-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
width: 100%;
|
|
}
|