12345678910111213141516171819202122232425262728293031323334353637 |
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
- :root {
- --zhnh-text-color: #fff;
- }
- /* 在您的Tailwind CSS样式表中 */
- .writing-vertical {
- writing-mode: vertical-rl; /* 从右向左,文字竖着显示 */
- text-orientation: mixed; /* 文字方向 */
- }
- .value {
- @apply text-[#07E3F9] tracking-wide;
- }
- .unit {
- @apply text-[#768F95] text-xs;
- }
- ::-webkit-scrollbar {
- width: 5px;
- }
- ::-webkit-scrollbar-thumb {
- background-color: #82d8f9;
- border-radius: 10px;
- }
- #app {
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- background-color: black;
- color: var(--zhnh-text-color);
- }
|