style.css 627 B

12345678910111213141516171819202122232425262728293031
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. }
  5. #app{
  6. height: 100vh;
  7. background-color: #051933;
  8. }
  9. ::-webkit-scrollbar {
  10. height: 2px;
  11. width: 4px;
  12. }
  13. ::-webkit-scrollbar-corner {
  14. background-color: transparent;
  15. }
  16. ::-webkit-scrollbar-thumb {
  17. width: 5px !important;
  18. height: 5px !important;
  19. border-radius: 10px;
  20. -webkit-box-shadow: inset 0 0 2px #115BE6;
  21. background: #115BE6;
  22. }
  23. ::-webkit-scrollbar-track {
  24. -webkit-box-shadow: inset 0 0 2px #03399F;
  25. border-radius: 10px;
  26. background: #03399F;
  27. }
  28. @font-face{
  29. font-family: 'YouSheBiaoTiHei';
  30. src: url('@/assets/font/YouSheBiaoTiHei.ttf');
  31. }