ぼざクリタグ広場 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.
 
 
 
 
 
 

111 lines
1.6 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. display: flex;
  42. place-items: center;
  43. min-width: 320px;
  44. min-height: 100vh;
  45. }
  46. h1
  47. {
  48. font-size: 3.2em;
  49. line-height: 1.1;
  50. }
  51. button
  52. {
  53. border-radius: 8px;
  54. border: 1px solid transparent;
  55. padding: 0.6em 1.2em;
  56. font-size: 1em;
  57. font-weight: 500;
  58. font-family: inherit;
  59. background-color: #1a1a1a;
  60. cursor: pointer;
  61. transition: border-color 0.25s;
  62. }
  63. button:hover
  64. {
  65. border-color: #646cff;
  66. }
  67. button:focus,
  68. button:focus-visible
  69. {
  70. outline: 4px auto -webkit-focus-ring-color;
  71. }
  72. @media (prefers-color-scheme: light)
  73. {
  74. :root
  75. {
  76. color: #213547;
  77. background-color: #ffffff;
  78. }
  79. a:hover
  80. {
  81. color: #747bff;
  82. }
  83. button
  84. {
  85. background-color: #f9f9f9;
  86. }
  87. }
  88. @keyframes wiki-blink
  89. {
  90. 0%, 100% { color: #dc2626; }
  91. 50% { color: #2563eb; }
  92. }
  93. @keyframes wiki-blink-dark
  94. {
  95. 0%, 100% { color: #f87171; }
  96. 50% { color: #60a5fa; }
  97. }