player can switch between compilation

This commit is contained in:
valere
2024-09-08 18:53:20 +02:00
parent 431fc4912b
commit 0c0074ccc1
9 changed files with 419 additions and 280 deletions

View File

@@ -1,3 +1,42 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
.button {
text-decoration: none;
box-shadow: 0 8px 0 0 black;
transition: all .3s;
border: 8px black solid;
line-height: 100%;
height: 70px;
width: 70px;
border-width: 2px;
border-radius: 100px;
cursor: pointer;
color: black;
font-size: 26px;
background-color: #ffffff59;
}
.button:hover {
background-color: #fdec50ff;
}
.button:active {
box-shadow: 0 0 0 0 black;
}
.button--close {
right: 24px;
padding-top: 10px;
position: absolute;
}
.button--screened {
top: 74px;
}
.compilation {
cursor: pointer;
max-width: 420px;
}