/* comments are ignored */ .card { color: #ff0000; background: rgb(0, 0, 0); border-radius: 12px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); font-size: 14px; font-weight: 600; line-height: 1.4; letter-spacing: 0.02em; transition: opacity 200ms ease-in-out; } .fine { border-radius: var(--md-sys-shape-corner-lg); color: var(--md-sys-color-primary); padding: calc(var(--md-sys-measurement-space100) * 2); border: 0; } /* white in a comment is ignored, and so is #fff */ .quiet::before { content: "white"; border: 1px solid white; outline-color: #fff; background: url(data:image/svg+xml;utf8,); } #add-button, .red-banner { color: transparent; fill: currentColor; } @media (min-width: 700px) { .card { display: flex; } } .edges { --card-border-radius: 12px; border-radius: min(var(--md-sys-shape-corner-lg), 50%); border-top-left-radius: calc(8px + 4px); transition: opacity 0s; animation: pulse var(--md-sys-motion-effects-slow-duration) var(--md-sys-motion-effects-slow) infinite; font: 600 14px/20px sans-serif; font-size: clamp(1rem, 2vw, 2rem); line-height: 1.5 } @media (width > 839px) and (max-height: 500px) { .edges { display: none; } } @media (600px <= width < 840px), (prefers-reduced-motion: reduce) { .edges { display: block; } } @media (max-width: 40rem) { .edges { display: grid; } } @container (width > 400px) { .edges { display: flex; } }