This post is saved as a draft.
#212121
1.stats { 2 display: inline-grid; 3 background-color: #111111; 4 color: #fff; 5 border-radius: 1rem; 6 border: 1px solid gray; 7} 8 9.shadow { 10 box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); 11} 12 13.stat { 14 display: inline-grid; 15 width: 100%; 16 grid-template-columns: repeat(1, 1fr); 17 column-gap: 1rem; 18 padding-left: 1.5rem; 19 padding-right: 1.5rem; 20 padding-top: 1rem; 21 padding-bottom: 1rem; 22} 23 24.stat-title { 25 grid-column-start: 1; 26 white-space: nowrap; 27 color: rgb(197, 194, 194); 28} 29 30.stat-value { 31 grid-column-start: 1; 32 white-space: nowrap; 33 font-size: 2.25rem; 34 line-height: 2.5rem; 35 font-weight: 800; 36} 37 38.stat-desc { 39 grid-column-start: 1; 40 white-space: nowrap; 41 font-size: 0.75rem; 42 line-height: 1rem; 43 color: rgb(197, 194, 194); 44}
Variation of acard
Variation of acard