github.com/kubeshop/testkube@v1.17.23/docs/src/theme/DocCard/styles.module.css (about) 1 .cardContainer { 2 --ifm-link-color: var(--ifm-color-emphasis-800); 3 --ifm-link-hover-color: var(--ifm-color-emphasis-700); 4 --ifm-link-hover-decoration: none; 5 background-color: var(--ifm-background-surface-color-hover); 6 box-shadow: 0 1.5px 3px 0 rgb(0 0 0 / 15%); 7 transition: all var(--ifm-transition-fast) ease; 8 transition-property: border, box-shadow; 9 height: 100%; 10 } 11 12 .cardContainer:hover { 13 outline: var(--ifm-color-primary) solid 2px; 14 box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%); 15 } 16 17 .cardContainer *:last-child { 18 margin-bottom: 0; 19 } 20 21 .cardTitle { 22 font-size: 1.2rem; 23 } 24 25 .cardDescription { 26 font-size: 0.8rem; 27 }