mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
20 lines
301 B
SCSS
20 lines
301 B
SCSS
.container {
|
|
min-width: 400px;
|
|
max-width: 50%;
|
|
margin: auto;
|
|
padding: 3rem;
|
|
background: rgba(50, 50, 50, 0.4);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.button {
|
|
background: var(--primary-color);
|
|
|
|
&:hover,
|
|
&:active,
|
|
&:focus {
|
|
background: var(--primary-color);
|
|
filter: brightness(1.1);
|
|
}
|
|
}
|