2023-06-02 20:26:20 +00:00
|
|
|
@use "sass:color";
|
|
|
|
@use "../variables" as *;
|
|
|
|
|
|
|
|
div.plate_container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-06-13 16:59:49 +00:00
|
|
|
justify-content: space-evenly;
|
2023-06-02 20:26:20 +00:00
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
border: 2px solid $color-dark;
|
|
|
|
grid-column: right / right;
|
|
|
|
grid-row: upper / 3;
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
margin-bottom: 1%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-02-12 00:32:30 +00:00
|
|
|
|
|
|
|
&>div {
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: auto auto;
|
|
|
|
grid-template-rows: auto auto;
|
|
|
|
|
|
|
|
&>h2:nth-of-type(1) {
|
|
|
|
grid-column: 2;
|
|
|
|
grid-row: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&>h2:nth-of-type(2) {
|
|
|
|
grid-column: 1;
|
|
|
|
grid-row: 2;
|
|
|
|
writing-mode: vertical-rl;
|
|
|
|
transform: rotate(-180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
&>div {
|
|
|
|
grid-column:2;
|
|
|
|
grid-row: 2;
|
|
|
|
}
|
|
|
|
}
|
2023-06-02 20:26:20 +00:00
|
|
|
}
|