Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

globals.css 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @import "tailwindcss";
  2. :root {
  3. --background: #ffffff;
  4. --foreground: #171717;
  5. }
  6. @theme inline {
  7. --color-background: var(--background);
  8. --color-foreground: var(--foreground);
  9. --font-sans: var(--font-geist-sans);
  10. --font-mono: var(--font-geist-mono);
  11. }
  12. @media (prefers-color-scheme: dark) {
  13. :root {
  14. --background: #0a0a0a;
  15. --foreground: #ededed;
  16. }
  17. }
  18. body {
  19. background: var(--background);
  20. color: var(--foreground);
  21. font-family: Arial, Helvetica, sans-serif;
  22. }
  23. body, * {
  24. scrollbar-width: thin;
  25. scrollbar-color: rgba(100, 100, 100, 0.3) transparent;
  26. }
  27. .custom-center-menu > .ant-menu-item {
  28. margin-left: auto !important;
  29. margin-right: auto !important;
  30. }
  31. /* Target the whole page or a specific container */
  32. ::-webkit-scrollbar {
  33. width: 2px; /* vertical scrollbar */
  34. height: 4px; /* horizontal scrollbar */
  35. }
  36. ::-webkit-scrollbar-track {
  37. background: transparent;
  38. }
  39. ::-webkit-scrollbar-thumb {
  40. background-color: rgba(100, 100, 100, 0.3); /* light gray thumb */
  41. border-radius: 10px;
  42. }
  43. ::-webkit-scrollbar-thumb:hover {
  44. background-color: rgba(100, 100, 100, 0.6);
  45. }