mirror of
https://github.com/VickScarlet/lifeRestart.git
synced 2026-08-28 01:06:49 +08:00
23 lines
506 B
CSS
23 lines
506 B
CSS
.screen.mode {
|
|
gap: 1rem;
|
|
button {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 10rem;
|
|
gap: 0.5rem;
|
|
.name {
|
|
font-size: 3.5rem;
|
|
font-weight: bold;
|
|
}
|
|
.description {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 1rem;
|
|
span {
|
|
font-size: 1rem;
|
|
&::before { content: '['; }
|
|
&::after { content: ']'; }
|
|
}
|
|
}
|
|
}
|
|
} |