HearingGame/index.css
2023-04-01 10:44:45 +02:00

69 lines
1.0 KiB
CSS

#activeholder{
position: absolute;
width: 100%;
left: 0%;
bottom: 0%;
}
#activepart{
width: fit-content;
margin: auto;
padding: auto;
position: relative;
}
.place {
width: 32px;
height: 32px;
background-color: lightgray;
}
#audiopart{
background-color: transparent;
background-image: url("assets/play.png");
}
#trashcan{
width: 32px;
height: 32px;
background-color:darksalmon;
background-image: url("assets/trashcan.png");
}
#verify{
width: 32px;
height: 32px;
background-image: url("assets/verify.png");
background-color: darksalmon;
}
.status{
width: 64px;
height: 64px;
opacity: 0;
background-image: url("assets/fail.png");
}
th, td {
padding: 16px;
}
.itemcont{
width: 100vw;
}
.itemstor {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 10px;
overflow-wrap: break-word;
width: fit-content;
margin: auto;
padding: auto;
position: relative;
}
.itemstor > *{
margin: 16px;
}