Sha256: c0c8a8728e3d7235f07989abdcc8789992c8e9a54c5f16e3af8104c5189b1b51
Contents?: true
Size: 1.49 KB
Versions: 11
Compression:
Stored size: 1.49 KB
Contents
// Empty state blocker with blokk font-family replacement // Import redacted-style "blokk" font for empty states // Needs to be outside of the namespace for valid CSS output (particularly important for Internet Explorer) @font-face { font-family: 'BLOKK'; src: asset-url('admin/blokk/BLOKKNeue-Regular.eot'); src: asset-url('admin/blokk/BLOKKNeue-Regular.eot?#iefix') format('embedded-opentype'), asset-url('admin/blokk/BLOKKNeue-Regular.woff2') format('woff2'), asset-url('admin/blokk/BLOKKNeue-Regular.woff') format('woff'), asset-url('admin/blokk/BLOKKNeue-Regular.otf') format('opentype'), asset-url('admin/blokk/BLOKKNeue-Regular.ttf') format('truetype'), asset-url('admin/blokk/BLOKKNeue-Regular.svg#BLOKKRegular') format('svg'); font-weight: normal; font-style: normal; } @media screen and (-webkit-min-device-pixel-ratio:0) { @font-face { font-family: 'BLOKK'; src: asset-url('admin/blokk/BLOKKNeue-Regular.svg') format('svg'); } } $redacted-font-family: "BLOKK"; // Overlay styles .redacted-text { font-family: $redacted-font-family !important; letter-spacing: -3px; word-spacing: -3px; .card-img-overlay { background: none; } } .overlay-white { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 30; font-family: $font-family-base; letter-spacing: 0; word-spacing: 0; background-color: transparentize($white, 0.2); } .overlay-blur { transition: $transition-base; filter: blur(0); &.in { filter: blur(4px); } }
Version data entries
11 entries across 11 versions & 1 rubygems