styled close button

This commit is contained in:
Václav Šmejkal 2024-05-25 15:35:48 +02:00
parent 4c4d32458c
commit 9c00a1b4b6
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -76,9 +76,9 @@ body
margin-left: 0.141vw; margin-left: 0.141vw;
} }
#upper_panel img:hover #upper_panel img:hover, #close_btn:hover
{ {
filter: invert(25%); filter: invert(10%);
} }
#panels #panels
@ -297,7 +297,7 @@ body
z-index: 9; z-index: 9;
position: absolute; position: absolute;
padding: 1%; padding: 2.625vh;
width: fit-content; width: fit-content;
height: fit-content; height: fit-content;
@ -325,4 +325,17 @@ body
max-height: 100%; max-height: 100%;
object-fit: scale-down; object-fit: scale-down;
}
#close_btn
{
position: absolute;
top: 0;
right: 0;
height: 2vh;
padding: 0.25vh;
border: 1px solid #3E392F;
border-right: none;
border-top: none;
} }