Hanye官网
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

main.css 878B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. :root {
  5. /* 颜色变量 */
  6. --color-primary: #3b82f6;
  7. --color-secondary: #10b981;
  8. --color-accent: #f59e0b;
  9. --color-danger: #ef4444;
  10. --color-success: #10b981;
  11. --color-warning: #f59e0b;
  12. --color-info: #3b82f6;
  13. --color-dark: #111827;
  14. --color-light: #f3f4f6;
  15. --color-bg: #ffffff;
  16. --color-text: #111827;
  17. --color-text-light: #6b7280;
  18. --color-border: #e5e7eb;
  19. }
  20. body {
  21. font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  22. color: var(--color-text);
  23. background-color: var(--color-bg);
  24. }
  25. @layer components {
  26. .btn {
  27. @apply px-4 py-2 rounded font-medium transition duration-200;
  28. }
  29. .btn-primary {
  30. @apply bg-blue-500 text-white hover:bg-blue-600;
  31. }
  32. .container-custom {
  33. @apply max-w-7xl mx-auto px-4 sm:px-6 lg:px-8;
  34. }
  35. }