1
0
Fork 0
mirror of https://github.com/kou029w/quot.git synced 2025-01-19 00:18:09 +00:00
quot/app/views/components/cards.css

15 lines
264 B
CSS
Raw Normal View History

2022-08-24 17:43:32 +09:00
.cards {
display: grid;
2022-09-07 20:46:43 +09:00
gap: 0.75rem;
grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
2022-08-24 17:43:32 +09:00
}
2022-08-31 12:02:23 +09:00
.cards > a:hover::after {
content: "";
background-color: rgba(0, 0, 0, 10%);
display: block;
position: relative;
top: -100%;
height: 100%;
}