mirror of
https://github.com/kou029w/quot.git
synced 2025-01-19 16:38:06 +00:00
14 lines
264 B
CSS
14 lines
264 B
CSS
.cards {
|
|
display: grid;
|
|
gap: 0.75rem;
|
|
grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
|
|
}
|
|
|
|
.cards > a:hover::after {
|
|
content: "";
|
|
background-color: rgba(0, 0, 0, 10%);
|
|
display: block;
|
|
position: relative;
|
|
top: -100%;
|
|
height: 100%;
|
|
}
|