Spaces:
Running
Running
File size: 1,340 Bytes
0c88bc5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | @tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--bg: #1c1814;
--line: rgba(42, 37, 32, 0.12);
}
html,
body {
background: #F5EFE2;
color: #2A2520;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
box-sizing: border-box;
}
.admin-review-video:fullscreen {
width: 100vw !important;
height: 100vh !important;
background: #000 !important;
object-fit: contain !important;
}
.admin-review-video:-webkit-full-screen {
width: 100vw !important;
height: 100vh !important;
background: #000 !important;
object-fit: contain !important;
}
@layer utilities {
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
.text-display {
font-family: var(--font-fraunces), 'Fraunces', Georgia, serif;
font-weight: 300;
letter-spacing: -0.025em;
line-height: 1.05;
}
.text-display em,
.text-display .em {
font-style: italic;
font-family: var(--font-fraunces), 'Fraunces', Georgia, serif;
font-weight: 300;
}
.text-eyebrow {
font-family: var(--font-dm-mono), 'DM Mono', ui-monospace, monospace;
font-size: 10px;
letter-spacing: 0.2em;
text-transform: uppercase;
}
}
|