33 lines
613 B
SCSS
33 lines
613 B
SCSS
|
|
.powermenu-container {
|
|
margin: 400px 100px;
|
|
|
|
& * {
|
|
outline: initial;
|
|
}
|
|
& > button {
|
|
padding: 96px;
|
|
margin: 0 6px;
|
|
border-radius: 6px;
|
|
background: darken($color: $foreground, $amount: 35);
|
|
|
|
&:first-child {
|
|
border-top-left-radius: 24px;
|
|
border-bottom-left-radius: 24px;
|
|
}
|
|
|
|
&:last-child {
|
|
border-top-right-radius: 24px;
|
|
border-bottom-right-radius: 24px;
|
|
}
|
|
|
|
& label {
|
|
font-size: 98px;
|
|
}
|
|
}
|
|
|
|
& button:hover {
|
|
background: $color1;
|
|
}
|
|
}
|