112 lines
1.4 KiB
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-16 21:26:37 +02:00
}
#panels
{
display: flex;
height: 88.5vh;
2024-05-20 20:40:17 +02:00
font-size: larger;
2024-05-16 21:26:37 +02:00
}
#left_panel, #right_panel
{
width: 50%;
height: 100%;
padding: 2vh;
}
#left_panel
{
border-right: 1px solid #3E392F;
2024-05-20 19:16:20 +02:00
}
.output + .output
{
margin-top: 1.5vh;
}
2024-05-22 18:01:15 +02:00
.output:hover
{
filter: invert(10%);
}
#buttons
{
position: absolute;
bottom: 0.3vh;
right: 0.3vh;
display: none;
}
.btn
{
width: fit-content;
padding: 0.3vh;
padding-left: 0.9vh;
padding-right: 0.9vh;
background-color: #9E6812;
border: 1px solid #3E392F;
color: #C1BFBE;
border-radius: 0.3vh 0.3vh;
2024-05-22 17:27:21 +02:00
}
.editable
{
background-color: #9E6812;
border: 1px solid #3E392F;
color: #C1BFBE;
border-radius: 0.3vh 0.3vh;
}