|
1 | | -/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */ |
| 1 | +/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */ |
2 | 2 | /*! Blowfish | MIT License | https://github.com/nunocoracao/blowfish */ |
3 | 3 | @layer properties; |
4 | 4 | @layer theme, base, components, utilities; |
|
263 | 263 | .-start-6 { |
264 | 264 | inset-inline-start: calc(var(--spacing) * -6); |
265 | 265 | } |
| 266 | + .start { |
| 267 | + inset-inline-start: var(--spacing); |
| 268 | + } |
266 | 269 | .start-\[calc\(max\(-50vw\,-800px\)\+50\%\)\] { |
267 | 270 | inset-inline-start: calc(max(-50vw, -800px) + 50%); |
268 | 271 | } |
| 272 | + .end { |
| 273 | + inset-inline-end: var(--spacing); |
| 274 | + } |
269 | 275 | .end-6 { |
270 | 276 | inset-inline-end: calc(var(--spacing) * 6); |
271 | 277 | } |
|
276 | 282 | top: calc(var(--spacing) * 0); |
277 | 283 | } |
278 | 284 | .top-1\/2 { |
279 | | - top: calc(1/2 * 100%); |
| 285 | + top: calc(1 / 2 * 100%); |
280 | 286 | } |
281 | 287 | .top-5 { |
282 | 288 | top: calc(var(--spacing) * 5); |
283 | 289 | } |
284 | 290 | .top-20 { |
285 | 291 | top: calc(var(--spacing) * 20); |
286 | 292 | } |
| 293 | + .top-full { |
| 294 | + top: 100%; |
| 295 | + } |
287 | 296 | .right-0 { |
288 | 297 | right: calc(var(--spacing) * 0); |
289 | 298 | } |
|
300 | 309 | left: calc(var(--spacing) * 0); |
301 | 310 | } |
302 | 311 | .left-1\/2 { |
303 | | - left: calc(1/2 * 100%); |
| 312 | + left: calc(1 / 2 * 100%); |
304 | 313 | } |
305 | 314 | .-z-10 { |
306 | 315 | z-index: calc(10 * -1); |
|
1097 | 1106 | height: calc(var(--spacing) * 0); |
1098 | 1107 | } |
1099 | 1108 | .h-1\/2 { |
1100 | | - height: calc(1/2 * 100%); |
| 1109 | + height: calc(1 / 2 * 100%); |
1101 | 1110 | } |
1102 | 1111 | .h-3 { |
1103 | 1112 | height: calc(var(--spacing) * 3); |
|
1234 | 1243 | .w-full { |
1235 | 1244 | width: 100%; |
1236 | 1245 | } |
| 1246 | + .w-max { |
| 1247 | + width: max-content; |
| 1248 | + } |
1237 | 1249 | .w-screen { |
1238 | 1250 | width: 100vw; |
1239 | 1251 | } |
|
1246 | 1258 | .max-w-20 { |
1247 | 1259 | max-width: calc(var(--spacing) * 20); |
1248 | 1260 | } |
| 1261 | + .max-w-48 { |
| 1262 | + max-width: calc(var(--spacing) * 48); |
| 1263 | + } |
1249 | 1264 | .max-w-\[200px\] { |
1250 | 1265 | max-width: 200px; |
1251 | 1266 | } |
|
1316 | 1331 | flex-basis: auto; |
1317 | 1332 | } |
1318 | 1333 | .-translate-x-1\/2 { |
1319 | | - --tw-translate-x: calc(calc(1/2 * 100%) * -1); |
| 1334 | + --tw-translate-x: calc(calc(1 / 2 * 100%) * -1); |
1320 | 1335 | translate: var(--tw-translate-x) var(--tw-translate-y); |
1321 | 1336 | } |
1322 | 1337 | .-translate-x-full { |
|
1328 | 1343 | translate: var(--tw-translate-x) var(--tw-translate-y); |
1329 | 1344 | } |
1330 | 1345 | .-translate-y-1\/2 { |
1331 | | - --tw-translate-y: calc(calc(1/2 * 100%) * -1); |
| 1346 | + --tw-translate-y: calc(calc(1 / 2 * 100%) * -1); |
1332 | 1347 | translate: var(--tw-translate-x) var(--tw-translate-y); |
1333 | 1348 | } |
1334 | 1349 | .-translate-y-8 { |
|
1738 | 1753 | background-color: color-mix(in oklab, rgba(var(--color-neutral-500), 1) 50%, transparent); |
1739 | 1754 | } |
1740 | 1755 | } |
| 1756 | + .bg-neutral-900 { |
| 1757 | + background-color: rgba(var(--color-neutral-900), 1); |
| 1758 | + } |
1741 | 1759 | .bg-neutral\/25 { |
1742 | 1760 | background-color: color-mix(in srgb, rgba(rgba(var(--color-neutral), 1), 1) 25%, transparent); |
1743 | 1761 | @supports (color: color-mix(in lab, red, red)) { |
|
2257 | 2275 | --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); |
2258 | 2276 | box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); |
2259 | 2277 | } |
| 2278 | + .shadow-md { |
| 2279 | + --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); |
| 2280 | + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); |
| 2281 | + } |
2260 | 2282 | .shadow-sm { |
2261 | 2283 | --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); |
2262 | 2284 | box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); |
|
2430 | 2452 | rotate: 0deg; |
2431 | 2453 | } |
2432 | 2454 | } |
| 2455 | + .group-focus-within\:visible { |
| 2456 | + &:is(:where(.group):focus-within *) { |
| 2457 | + visibility: visible; |
| 2458 | + } |
| 2459 | + } |
| 2460 | + .group-focus-within\:opacity-100 { |
| 2461 | + &:is(:where(.group):focus-within *) { |
| 2462 | + opacity: 100%; |
| 2463 | + } |
| 2464 | + } |
| 2465 | + .group-hover\:visible { |
| 2466 | + &:is(:where(.group):hover *) { |
| 2467 | + @media (hover: hover) { |
| 2468 | + visibility: visible; |
| 2469 | + } |
| 2470 | + } |
| 2471 | + } |
2433 | 2472 | .group-hover\:scale-110 { |
2434 | 2473 | &:is(:where(.group):hover *) { |
2435 | 2474 | @media (hover: hover) { |
|
2853 | 2892 | } |
2854 | 2893 | .sm\:w-1\/2 { |
2855 | 2894 | @media (width >= 640px) { |
2856 | | - width: calc(1/2 * 100%); |
| 2895 | + width: calc(1 / 2 * 100%); |
2857 | 2896 | } |
2858 | 2897 | } |
2859 | 2898 | .sm\:grid-cols-2 { |
|
2941 | 2980 | } |
2942 | 2981 | .md\:w-1\/3 { |
2943 | 2982 | @media (width >= 853px) { |
2944 | | - width: calc(1/3 * 100%); |
| 2983 | + width: calc(1 / 3 * 100%); |
2945 | 2984 | } |
2946 | 2985 | } |
2947 | 2986 | .md\:w-auto { |
|
3056 | 3095 | } |
3057 | 3096 | .lg\:w-1\/4 { |
3058 | 3097 | @media (width >= 1024px) { |
3059 | | - width: calc(1/4 * 100%); |
| 3098 | + width: calc(1 / 4 * 100%); |
3060 | 3099 | } |
3061 | 3100 | } |
3062 | 3101 | .lg\:w-auto { |
|
3136 | 3175 | } |
3137 | 3176 | .xl\:w-1\/4 { |
3138 | 3177 | @media (width >= 1280px) { |
3139 | | - width: calc(1/4 * 100%); |
| 3178 | + width: calc(1 / 4 * 100%); |
3140 | 3179 | } |
3141 | 3180 | } |
3142 | 3181 | .xl\:grid-cols-4 { |
|
3276 | 3315 | } |
3277 | 3316 | } |
3278 | 3317 | } |
| 3318 | + .dark\:bg-neutral-100 { |
| 3319 | + &:is(.dark *) { |
| 3320 | + background-color: rgba(var(--color-neutral-100), 1); |
| 3321 | + } |
| 3322 | + } |
3279 | 3323 | .dark\:bg-neutral-400 { |
3280 | 3324 | &:is(.dark *) { |
3281 | 3325 | background-color: rgba(var(--color-neutral-400), 1); |
|
3433 | 3477 | color: rgba(var(--color-neutral-800), 1); |
3434 | 3478 | } |
3435 | 3479 | } |
| 3480 | + .dark\:text-neutral-900 { |
| 3481 | + &:is(.dark *) { |
| 3482 | + color: rgba(var(--color-neutral-900), 1); |
| 3483 | + } |
| 3484 | + } |
3436 | 3485 | .dark\:text-primary-200 { |
3437 | 3486 | &:is(.dark *) { |
3438 | 3487 | color: rgba(var(--color-primary-200), 1); |
@@ -4163,6 +4212,55 @@ body.zen-mode-enable { |
4163 | 4212 | display: none !important; |
4164 | 4213 | } |
4165 | 4214 | } |
| 4215 | +.gist-container .gist { |
| 4216 | + h1 { |
| 4217 | + margin-bottom: calc(var(--spacing) * 4); |
| 4218 | + } |
| 4219 | + .gist-file { |
| 4220 | + border: 1px solid rgb(var(--color-neutral-300)); |
| 4221 | + border-radius: 8px; |
| 4222 | + overflow: hidden; |
| 4223 | + } |
| 4224 | + .gist-meta { |
| 4225 | + background-color: white; |
| 4226 | + color: rgb(var(--color-neutral-600)); |
| 4227 | + border-radius: 0 0 8px 8px; |
| 4228 | + } |
| 4229 | + .gist-meta a { |
| 4230 | + color: rgb(var(--color-primary-600)); |
| 4231 | + } |
| 4232 | + .highlight tr { |
| 4233 | + border-bottom: none; |
| 4234 | + } |
| 4235 | + .gist-file .file { |
| 4236 | + margin-top: 0; |
| 4237 | + margin-bottom: 0; |
| 4238 | + } |
| 4239 | + .dark & { |
| 4240 | + .gist-file { |
| 4241 | + border-color: rgb(var(--color-neutral-800)); |
| 4242 | + } |
| 4243 | + .gist-data { |
| 4244 | + background-color: rgb(var(--color-neutral-900)); |
| 4245 | + border-bottom: 1px solid rgb(var(--color-neutral-800)); |
| 4246 | + } |
| 4247 | + .gist-meta { |
| 4248 | + background-color: rgb(26, 26, 26); |
| 4249 | + color: rgb(var(--color-neutral-400)); |
| 4250 | + } |
| 4251 | + .gist-meta a { |
| 4252 | + color: rgb(var(--color-primary-400)); |
| 4253 | + } |
| 4254 | + .blob-wrapper { |
| 4255 | + filter: invert(0.9) hue-rotate(180deg); |
| 4256 | + background-color: #fff; |
| 4257 | + } |
| 4258 | + .gist-data { |
| 4259 | + background: rgb(26, 26, 26); |
| 4260 | + color: rgb(var(--color-neutral-100)); |
| 4261 | + } |
| 4262 | + } |
| 4263 | +} |
4166 | 4264 | .a11y-panel-enter-active { |
4167 | 4265 | animation: slideInFromTop 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards; |
4168 | 4266 | } |
|
0 commit comments