HearingGame/index.css

80 lines
1.1 KiB
CSS
Raw Normal View History

2023-04-01 22:31:36 +02:00
body {
2023-04-01 19:34:07 +02:00
background-color: darkgray;
}
2023-04-01 22:17:02 +02:00
#activeholder {
2023-03-26 11:45:32 +02:00
position: absolute;
width: 100%;
left: 0%;
bottom: 0%;
}
2023-04-01 22:17:02 +02:00
.activepart {
2023-03-26 11:45:32 +02:00
width: fit-content;
margin: auto;
padding: auto;
position: relative;
}
.place {
width: 32px;
height: 32px;
background-color: lightgray;
}
2023-04-01 22:17:02 +02:00
#audiopart {
2023-03-26 11:45:32 +02:00
background-color: transparent;
background-image: url("assets/play.png");
}
2023-04-01 22:17:02 +02:00
#trashcan {
2023-03-26 11:45:32 +02:00
width: 32px;
height: 32px;
2023-04-01 22:17:02 +02:00
background-color: red;
2023-03-26 11:45:32 +02:00
background-image: url("assets/trashcan.png");
}
2023-04-01 22:17:02 +02:00
#verify {
2023-03-26 11:45:32 +02:00
width: 32px;
height: 32px;
background-image: url("assets/verify.png");
background-color: darksalmon;
}
2023-04-01 22:17:02 +02:00
.status {
2023-03-26 11:45:32 +02:00
width: 64px;
height: 64px;
opacity: 0;
background-image: url("assets/fail.png");
}
2023-04-01 22:17:02 +02:00
th,
td {
2023-03-26 11:45:32 +02:00
padding: 16px;
}
2023-04-01 22:17:02 +02:00
.itemcont {
2023-04-01 08:08:45 +02:00
width: 100vw;
}
.itemstor {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 10px;
width: fit-content;
margin: auto;
padding: auto;
position: relative;
}
2023-04-01 22:17:02 +02:00
.itemstor>* {
2023-03-26 11:45:32 +02:00
margin: 16px;
2023-04-01 21:41:38 +02:00
}
2023-04-01 22:17:02 +02:00
#vzoritem {
2023-04-01 21:41:38 +02:00
bottom: 4%;
left: 4%;
position: absolute;
z-index: 2;
2023-04-01 08:08:45 +02:00
}