add fullscreen button

This commit is contained in:
Johannes
2026-03-13 21:51:47 +01:00
parent dbec447b39
commit 85d3b2a7ba
3 changed files with 35 additions and 0 deletions

View File

@@ -221,6 +221,25 @@ html, body {
border-radius: 999px;
}
#fs_btn {
background: rgba(0,0,0,0.5);
border: none;
border-radius: 999px;
color: #fff;
font-size: 1rem;
width: 40px;
height: 40px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.15s;
}
#fs_btn:active {
background: rgba(0,0,0,0.8);
}
/* desktop nav arrows */
#arrow_left, #arrow_right {
position: absolute;