HearingGame/index.css

102 lines
1.5 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 {
2023-04-02 11:53:55 +02:00
width: 64px;
height: 64px;
2023-03-26 11:45:32 +02:00
background-color: lightgray;
}
2023-04-02 11:53:55 +02:00
.fixbgimage{
image-rendering: pixelated;
background-repeat: no-repeat;
background-size: cover;
2023-03-26 11:45:32 +02:00
}
2023-04-01 22:17:02 +02:00
#trashcan {
2023-04-02 11:53:55 +02:00
width: 64px;
height: 64px;
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-04-02 11:53:55 +02:00
width: 64px;
height: 64px;
2023-03-26 11:45:32 +02:00
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-02 11:53:55 +02:00
width: 64px;
height: 64px;
overflow: hidden;
display: inline-block;
2023-03-26 11:45:32 +02:00
}
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-02 11:53:55 +02:00
.itemstor>div {
2023-03-26 11:45:32 +02:00
margin: 16px;
2023-04-01 21:41:38 +02:00
}
2023-04-02 11:53:55 +02:00
.itemstor>div>p {
margin: 0px;
}
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-02 11:53:55 +02:00
}
.lettervec{
font-family: 'Courier New', monospace;
font-size: 64px;
width: 64px;
height: 64px;
text-align: center;
margin: 0px;
background-color:white;
}
.imagevec{
width: 64px;
height: 64px;
2023-04-01 08:08:45 +02:00
}