2023-07-28 22:10:48 +01:00
|
|
|
.hextra-cards {
|
2024-03-31 23:06:26 +02:00
|
|
|
grid-template-columns: repeat(auto-fill, minmax(max(250px, calc((100% - 1rem * 2) / var(--hextra-cards-grid-cols))), 1fr));
|
2023-07-28 22:10:48 +01:00
|
|
|
}
|
|
|
|
|
2024-08-11 18:30:19 +02:00
|
|
|
.hextra-card {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2023-07-28 22:10:48 +01:00
|
|
|
.hextra-card img {
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hextra-card:hover svg {
|
|
|
|
color: currentColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hextra-card svg {
|
|
|
|
width: 1.5rem;
|
|
|
|
color: #00000033;
|
|
|
|
transition: color 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hextra-card p {
|
|
|
|
margin-top: 0.5rem;
|
2024-08-11 18:30:19 +02:00
|
|
|
position: relative;
|
2023-07-28 22:10:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.dark .hextra-card svg {
|
|
|
|
color: #ffffff66;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark .hextra-card:hover svg {
|
|
|
|
color: currentColor;
|
|
|
|
}
|
2024-08-11 18:30:19 +02:00
|
|
|
|
2024-08-11 18:47:03 +01:00
|
|
|
.hextra-card-tag {
|
2024-08-11 18:30:19 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
right: 5px;
|
|
|
|
z-index: 10;
|
2024-08-11 18:47:03 +01:00
|
|
|
}
|