51 lines
650 B
CSS
Raw Normal View History

2024-05-09 07:45:07 +02:00
body
{
display: flex;
justify-content: center;
}
#main_panel
{
position: absolute;
width: 130vh;
height: 95vh;
2024-05-10 16:03:18 +02:00
2024-05-09 07:45:07 +02:00
background: #6F7270;
2024-05-10 16:03:18 +02:00
2024-05-09 07:45:07 +02:00
border: 1px solid #3E392F;
2024-05-10 16:03:18 +02:00
border-radius: 0.4vh 0.4vh;
2024-05-09 07:45:07 +02:00
margin-top: 1.5vh;
}
2024-05-10 16:03:18 +02:00
#upper_panel
2024-05-09 07:45:07 +02:00
{
2024-05-10 16:03:18 +02:00
margin-left: auto;
border: 1px solid #3E392F;
border-right: none;
border-top: none;
border-bottom-left-radius: 0.4vh 0.4vh;
2024-05-09 07:45:07 +02:00
width: fit-content;
2024-05-10 16:03:18 +02:00
height: 2vh;
display: flex;
justify-content: end;
padding: 0.25vh;
}
#upper_panel *
{
border-collapse: collapse;
}
img + img
{
margin-left: 0.25vh;
2024-05-10 16:06:44 +02:00
}
img:hover
{
filter: invert(25%);
2024-05-09 07:45:07 +02:00
}