2025-02-09 23:51:54 +02:00
|
|
|
.category {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.enemies {
|
|
|
|
|
display: flex;
|
2025-02-15 20:35:06 +02:00
|
|
|
width: 100%;
|
|
|
|
|
flex-wrap: wrap;
|
2025-07-07 21:16:53 +03:00
|
|
|
gap: 32px;
|
|
|
|
|
|
|
|
|
|
.enemy {
|
|
|
|
|
display: flex;
|
2025-07-08 00:47:18 +03:00
|
|
|
cursor: pointer;
|
2025-07-07 21:16:53 +03:00
|
|
|
}
|
2025-02-09 23:51:54 +02:00
|
|
|
|
|
|
|
|
.drop {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
text-shadow: black 2px 2px;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
|
|
|
|
|
div {
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
width: 256px;
|
|
|
|
|
height: 256px;
|
|
|
|
|
background-size: 384px;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
box-shadow: inset rgb(51, 51, 51) 0px 0px 10px 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* &:hover { */
|
|
|
|
|
/* background-color: #333; */
|
|
|
|
|
/* box-shadow: 0 0 10px 1px rgba(0, 255, 0, 0.5); */
|
|
|
|
|
/* transform: scale(1.5); */
|
|
|
|
|
/**/
|
|
|
|
|
/* & > div { */
|
|
|
|
|
/* padding: 32px; */
|
|
|
|
|
/* margin: -32px; */
|
|
|
|
|
/* } */
|
|
|
|
|
/* } */
|
|
|
|
|
}
|
2025-07-07 21:16:53 +03:00
|
|
|
|
|
|
|
|
.worlds {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
width: 256px;
|
|
|
|
|
height: 316px;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
2025-07-13 15:37:01 +03:00
|
|
|
:first-child {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-07 21:16:53 +03:00
|
|
|
div {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
2025-07-13 15:37:01 +03:00
|
|
|
.icon {
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
width: 64px;
|
|
|
|
|
height: 64px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.info {
|
2025-07-07 21:16:53 +03:00
|
|
|
margin-left: 8px;
|
2025-07-13 15:37:01 +03:00
|
|
|
margin-bottom: 0px;
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
padding-left: 24px;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2025-07-07 21:16:53 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-02-09 23:51:54 +02:00
|
|
|
}
|
2025-07-13 20:24:36 +03:00
|
|
|
|
|
|
|
|
.material-filters {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2025-07-13 23:56:34 +03:00
|
|
|
width: 40%;
|
2025-10-28 12:40:48 +02:00
|
|
|
row-gap: 1rem;
|
2025-07-13 20:24:36 +03:00
|
|
|
position: relative;
|
2025-10-28 12:40:48 +02:00
|
|
|
|
|
|
|
|
div {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
2025-07-13 23:56:34 +03:00
|
|
|
}
|
2025-07-13 20:24:36 +03:00
|
|
|
|
2025-07-13 23:56:34 +03:00
|
|
|
.tracked-filter {
|
|
|
|
|
margin-bottom: 16px;
|
2025-10-28 12:40:48 +02:00
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
2025-07-13 20:24:36 +03:00
|
|
|
}
|