HearingGame/index.css
2023-04-01 22:31:36 +02:00

80 lines
1.1 KiB
CSS

body {
background-color: darkgray;
}
#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: red;
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;
width: fit-content;
margin: auto;
padding: auto;
position: relative;
}
.itemstor>* {
margin: 16px;
}
#vzoritem {
bottom: 4%;
left: 4%;
position: absolute;
z-index: 2;
}