Spaces:
Runtime error
Runtime error
File size: 7,157 Bytes
7362797 |
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 |
/* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the Chameleon License found in the
* LICENSE file in the root directory of this source tree.
*/
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--tab-radius: 5px;
--rounded-box: 5px;
--rounded-btn: 5px;
}
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
@layer base {
@font-face {
font-family: "Optimistic Display";
src:
url(/fonts/optimistic/Optimistic_Display_W_Md.woff2) format("woff2"),
url(/fonts/optimistic/Optimistic_Display_W_Md.woff) format("woff");
font-weight: 500;
}
@font-face {
font-family: "Optimistic Display";
src:
url(/fonts/optimistic/Optimistic_Display_W_SBd.woff2) format("woff2"),
url(/fonts/optimistic/Optimistic_Display_W_SBd.woff) format("woff");
font-weight: 600;
}
@font-face {
font-family: "Optimistic Display";
src:
url(/fonts/optimistic/Optimistic_Display_W_Bd.woff2) format("woff2"),
url(/fonts/optimistic/Optimistic_Display_W_Bd.woff) format("woff");
font-weight: 700;
}
@font-face {
font-family: "Optimistic Text";
src:
url(/fonts/optimistic/Optimistic_Text_W_Rg.woff2) format("woff2"),
url(/fonts/optimistic/Optimistic_Text_W_Rg.woff) format("woff");
font-weight: 400;
}
@font-face {
font-family: "Optimistic Text";
src:
url(/fonts/optimistic/Optimistic_Text_W_Md.woff2) format("woff2"),
url(/fonts/optimistic/Optimistic_Text_W_Md.woff) format("woff");
font-weight: 500;
}
@font-face {
font-family: "Optimistic Text";
src:
url(/fonts/optimistic/Optimistic_Text_W_Bd.woff2) format("woff2"),
url(/fonts/optimistic/Optimistic_Text_W_Bd.woff) format("woff");
font-weight: 700;
}
@font-face {
font-family: "Optimistic Text";
src:
url(/fonts/optimistic/Optimistic_Text_W_XBd.woff2) format("woff2"),
url(/fonts/optimistic/Optimistic_Text_W_XBd.woff) format("woff");
font-weight: 800;
}
body {
font-family: "Optimistic Text", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #465a69;
}
/* Base (mobile) typography, overriding tailwind typography (.prose) defatuls */
/* Also review the theme in tailwind.config.js */
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Optimistic Display", sans-serif;
}
h4,
h5,
h6,
p {
max-width: 65ch;
}
.prose .display h1 {
@apply text-4xl font-medium leading-tight;
}
.prose .display h2 {
@apply font-medium leading-tight;
font-size: 2.5rem;
}
.prose h1 {
@apply mt-2 mb-4 text-3xl font-medium leading-tight;
letter-spacing: 0.016rem;
}
.prose h2 {
@apply my-2 text-2xl font-medium leading-tight;
letter-spacing: 0.01rem;
}
.prose h3 {
@apply my-2 text-xl font-medium leading-tight;
letter-spacing: 0.005rem;
}
.prose h4 {
@apply my-2 text-lg font-medium leading-tight;
}
.prose h5 {
@apply my-2 text-xl font-normal leading-normal;
letter-spacing: 0.005rem;
}
.prose h6 {
@apply my-2 text-base font-normal leading-normal;
}
.prose p {
@apply text-sm font-normal leading-normal;
}
.prose ol,
.prose ul {
@apply text-sm font-normal leading-normal;
padding-right: 2rem;
}
.prose a:not(.not-prose a) {
@apply inline-block no-underline;
border-bottom: 1px solid #0064e0;
}
.prose a:not(.not-prose a):hover,
.prose a:not(.not-prose a):active {
color: #0064e0;
}
.prose a:not(.not-prose a):focus {
@apply rounded-sm;
outline: none;
border-color: transparent;
box-shadow:
0 0 0 1px #0064e0,
0 0 4px #0064e0;
}
a.no-style,
a.no-style:hover,
a.no-style:active,
a.no-style:focus {
color: unset;
border: none;
text-decoration: none;
}
/* Non-mobile typography */
@media screen(lg) {
.prose .display h1 {
@apply text-6xl;
}
.prose .display h2 {
@apply text-5xl;
}
.prose h1 {
@apply text-4xl;
}
.prose h2 {
@apply text-3xl;
}
.prose h3 {
@apply text-2xl;
}
.prose h4 {
@apply text-lg text-gray-800;
}
.prose h5 {
@apply text-2xl;
}
.prose h6 {
@apply text-base;
}
.prose p {
@apply text-base;
}
.prose .medium {
@apply text-sm;
}
.prose ol,
.prose ul {
@apply text-base;
padding-right: 3rem;
}
}
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
≈ {
@apply text-white;
}
.dark-mode h4,
.dark-mode h6 {
@apply text-gray-200;
}
code {
font-family: Menlo, Consolas, monospace;
font-size: 0.85em;
display: inline-block;
background-color: #e5e7e9;
padding: 0px 6px;
border-radius: 4px;
}
.prose code:not(.not-prose code) {
@apply inline py-1 text-xs font-semibold break-all whitespace-pre-wrap;
background-color: rgba(0, 0, 0, 0.05);
}
.prose code:not(.not-prose code)::before,
.prose code:not(.not-prose code)::after {
content: none;
}
pre {
max-width: 75vw;
}
pre code {
@apply inline-block;
word-break: inherit;
}
.prose blockquote {
@apply font-normal text-gray-600 opacity-80;
}
}
/**
* Custom CSS classes
*/
.landing-page th {
background-color: #f1f4f7;
}
.landing-page th,
.landing-page td {
padding: 5px 10px;
}
.prose .chat-row p {
margin-top: 0;
}
.markdown td,
.markdown th {
border: 1px solid rgba(0, 0, 0, 0.2);
padding: 5px;
}
.markdown th {
background-color: rgba(0, 0, 0, 0.05);
}
.markdown table {
margin: 20px 0;
}
.markdown h1 {
font-size: 2.5em;
font-weight: 600;
}
.markdown h2 {
font-size: 2em;
font-weight: 500;
}
.markdown h3 {
font-size: 1.5em;
font-weight: 500;
}
.markdown h4 {
font-size: 1.2em;
font-weight: 500;
}
.markdown h5 {
font-weight: 500;
}
.btn {
@apply normal-case;
}
.justify-start-only {
justify-content: start;
}
.prose .text-white * {
color: #fff;
}
.prose .text-white code {
background: rgba(255, 255, 255, 0.05);
}
.comp_button * {
margin: 0;
}
.flex-grow-2 {
flex-grow: 2;
}
.flex-grow-3 {
flex-grow: 3;
}
.flex-grow-4 {
flex-grow: 4;
}
.flex-grow-5 {
flex-grow: 5;
}
.flex-grow-6 {
flex-grow: 6;
}
.flex-grow-7 {
flex-grow: 7;
}
.flex-grow-8 {
flex-grow: 8;
}
.flex-grow-9 {
flex-grow: 9;
}
.flex-grow-10 {
flex-grow: 10;
}
/* Custom audio player */
.audio-range input[type="range"] {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
appearance: none;
@apply w-full bg-transparent cursor-pointer;
}
.audio-range input[type="range"]::-webkit-slider-runnable-track {
@apply h-1;
}
.audio-range input[type="range"]::-moz-range-track {
@apply h-1;
}
.audio-range input[type="range"]::-webkit-slider-thumb {
appearance: none;
@apply w-1 h-1 bg-transparent;
}
.audio-range input[type="range"]::-moz-range-thumb {
border: none;
border-radius: 0;
@apply w-1 h-1 bg-transparent;
}
|