style.css 615 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. :root {
  5. --zhnh-text-color: #fff;
  6. }
  7. /* 在您的Tailwind CSS样式表中 */
  8. .writing-vertical {
  9. writing-mode: vertical-rl; /* 从右向左,文字竖着显示 */
  10. text-orientation: mixed; /* 文字方向 */
  11. }
  12. .value {
  13. @apply text-[#07E3F9] tracking-wide;
  14. }
  15. .unit {
  16. @apply text-[#768F95] text-xs;
  17. }
  18. ::-webkit-scrollbar {
  19. width: 5px;
  20. }
  21. ::-webkit-scrollbar-thumb {
  22. background-color: #82d8f9;
  23. border-radius: 10px;
  24. }
  25. #app {
  26. width: 100vw;
  27. height: 100vh;
  28. overflow: hidden;
  29. background-color: black;
  30. color: var(--zhnh-text-color);
  31. }