ぼざクリタグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

113 lines
1.5 KiB

  1. @import "@fontsource-variable/noto-sans-jp";
  2. @tailwind base;
  3. @tailwind components;
  4. @tailwind utilities;
  5. @layer base
  6. {
  7. body
  8. {
  9. @apply overflow-x-clip;
  10. }
  11. a
  12. {
  13. @apply text-blue-700 dark:text-blue-300;
  14. }
  15. a:hover
  16. {
  17. @apply text-blue-500 dark:text-blue-100;
  18. }
  19. }
  20. :root
  21. {
  22. font-family: "Noto Sans JP Variable", system-ui, Avenir, Helvetica, Arial, sans-serif;
  23. line-height: 1.5;
  24. font-weight: 400;
  25. color-scheme: light dark;
  26. color: rgba(255, 255, 255, 0.87);
  27. background-color: #242424;
  28. font-synthesis: none;
  29. text-rendering: optimizeLegibility;
  30. -webkit-font-smoothing: antialiased;
  31. -moz-osx-font-smoothing: grayscale;
  32. }
  33. a
  34. {
  35. font-weight: 500;
  36. text-decoration: inherit;
  37. }
  38. body
  39. {
  40. margin: 0;
  41. min-width: 320px;
  42. }
  43. #root
  44. {
  45. min-height: 100dvh;
  46. }
  47. h1
  48. {
  49. font-size: 3.2em;
  50. line-height: 1.1;
  51. }
  52. button
  53. {
  54. border-radius: 8px;
  55. border: 1px solid transparent;
  56. padding: 0.6em 1.2em;
  57. font-size: 1em;
  58. font-weight: 500;
  59. font-family: inherit;
  60. background-color: #1a1a1a;
  61. cursor: pointer;
  62. transition: border-color 0.25s;
  63. }
  64. button:hover
  65. {
  66. border-color: #646cff;
  67. }
  68. button:focus,
  69. button:focus-visible
  70. {
  71. outline: 4px auto -webkit-focus-ring-color;
  72. }
  73. @media (prefers-color-scheme: light)
  74. {
  75. :root
  76. {
  77. color: #213547;
  78. background-color: #ffffff;
  79. }
  80. a:hover
  81. {
  82. color: #747bff;
  83. }
  84. button
  85. {
  86. background-color: #f9f9f9;
  87. }
  88. }
  89. @keyframes wiki-blink
  90. {
  91. 0%, 100% { color: #dc2626; }
  92. 50% { color: #2563eb; }
  93. }
  94. @keyframes wiki-blink-dark
  95. {
  96. 0%, 100% { color: #f87171; }
  97. 50% { color: #60a5fa; }
  98. }