| 1 | .md-cards { |
| 2 | margin: 0.5rem; |
| 3 | gap: 0.5rem; |
| 4 | display: grid; |
| 5 | grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); |
| 6 | } |
| 7 | |
| 8 | |
| 9 | .md-cards>*::before { |
| 10 | content: ""; |
| 11 | position: absolute; |
| 12 | z-index: -2; |
| 13 | top: 0; |
| 14 | right: 0; |
| 15 | left: 0; |
| 16 | bottom: 0; |
| 17 | background-color: var(--md-sys-color-surface-variant); |
| 18 | } |
| 19 | |
| 20 | |
| 21 | .md-cards>*::after { |
| 22 | content: ""; |
| 23 | position: absolute; |
| 24 | z-index: -1; |
| 25 | top: 0; |
| 26 | right: 0; |
| 27 | left: 0; |
| 28 | bottom: 0; |
| 29 | background-color: transparent; |
| 30 | } |
| 31 | |
| 32 | .md-cards>* { |
| 33 | position: relative; |
| 34 | display: block; |
| 35 | text-decoration: none; |
| 36 | color: var(--md-sys-color-on-surface-variant); |
| 37 | border-radius: 0.75rem; |
| 38 | overflow: hidden; |
| 39 | box-shadow: var(--md-box_shadow_level0); |
| 40 | } |
| 41 | |
| 42 | |
| 43 | .md-cards>:hover::after { |
| 44 | background-color: var(--md-sys-color-on-surface-variant); |
| 45 | opacity: var(--md-sys-state-hover-state-layer-opacity); |
| 46 | } |
| 47 | |
| 48 | .md-cards>a:hover { |
| 49 | box-shadow: var(--md-box_shadow_level1); |
| 50 | } |
| 51 | |
| 52 | |
| 53 | .md-cards>:focus::after { |
| 54 | background-color: var(--md-sys-color-on-surface-variant); |
| 55 | opacity: var(--md-sys-state-focus-state-layer-opacity); |
| 56 | } |
| 57 | |
| 58 | .md-cards>a:focus { |
| 59 | outline: none; |
| 60 | } |
| 61 | |
| 62 | |
| 63 | .md-cards>:active::after { |
| 64 | background-color: var(--md-sys-color-on-surface-variant); |
| 65 | opacity: var(--md-sys-state-pressed-state-layer-opacity); |
| 66 | } |
| 67 | |
| 68 | .md-cards a:active { |
| 69 | background-position: center; |
| 70 | background-image: |
| 71 | radial-gradient(circle, var(--md-riple-color) 1%, transparent 1%); |
| 72 | background-size: 100%; |
| 73 | animation-name: md-ripple; |
| 74 | animation-duration: var(--md-sys-motion-duration-500); |
| 75 | box-shadow: var(--md-box_shadow_level0) !important; |
| 76 | } |
| 77 | |
| 78 | .md-cards>*>* { |
| 79 | display: block; |
| 80 | } |
| 81 | |
| 82 | .md-cards figure { |
| 83 | border-radius: 0.75rem; |
| 84 | padding: 0; |
| 85 | margin: 0; |
| 86 | width: 100%; |
| 87 | } |
| 88 | |
| 89 | .md-cards figure * { |
| 90 | border-radius: 0.75rem; |
| 91 | width: 100%; |
| 92 | } |
| 93 | |
| 94 | .md-cards .headline { |
| 95 | margin: 1rem; |
| 96 | font-family: var(--md-sys-typescale-headline-small-font); |
| 97 | font-weight: var(--md-sys-typescale-headline-small-weight); |
| 98 | font-size: var(--md-sys-typescale-headline-small-size); |
| 99 | font-style: var(--md-sys-typescale-headline-small-font-style); |
| 100 | letter-spacing: var(--md-sys-typescale-headline-small-tracking); |
| 101 | line-height: var(--md-sys-typescale-headline-small-line-height); |
| 102 | text-transform: var(--md-sys-typescale-headline-small-text-transform); |
| 103 | text-decoration: var(--md-sys-typescale-headline-small-text-decoration); |
| 104 | } |
| 105 | |
| 106 | .md-cards a .headline { |
| 107 | text-decoration: underline; |
| 108 | } |
| 109 | |
| 110 | .md-cards .supporting { |
| 111 | margin: 1rem; |
| 112 | font-family: var(--md-sys-typescale-body-large-font); |
| 113 | font-weight: var(--md-sys-typescale-body-large-weight); |
| 114 | font-size: var(--md-sys-typescale-body-large-size); |
| 115 | font-style: var(--md-sys-typescale-body-large-font-style); |
| 116 | letter-spacing: var(--md-sys-typescale-body-large-tracking); |
| 117 | line-height: var(--md-sys-typescale-body-large-line-height); |
| 118 | text-transform: var(--md-sys-typescale-body-large-text-transform); |
| 119 | text-decoration: var(--md-sys-typescale-body-large-text-decoration); |
| 120 | } |