plate-tool/plate-tool-web/assets/scss/default_theme/components/_plate_container.scss

62 lines
910 B
SCSS
Raw Normal View History

2023-06-02 20:26:20 +00:00
@use "sass:color";
@use "../variables" as *;
div.plate_container {
2024-08-10 02:57:50 +00:00
position: relative;
2023-06-02 20:26:20 +00:00
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;
}
}
2024-08-10 02:57:50 +00:00
div.plate_container--heatmap-notice {
position: absolute;
top: 0.5em;
left: 0.5em;
animation: 1s 1 attention_on_load;
}
}
@keyframes attention_on_load {
from{
color: $color-light;
transform: scale(1.05);
}
to {
color: inherit;
}
2023-06-02 20:26:20 +00:00
}