App.css 885 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. html {
  6. font-size: 21px;
  7. user-select: none;
  8. }
  9. body {
  10. background-color: #2c2c2c;
  11. /* background-color: #303030; */
  12. font-family: Ubuntu;
  13. font-size: 1em;
  14. }
  15. .App {
  16. display: flex;
  17. height: 100vh;
  18. width: 100vw;
  19. }
  20. /* ::-webkit-scrollbar {
  21. width: 12px;
  22. }
  23. ::-webkit-scrollbar-track {
  24. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  25. -webkit-border-radius: 10px;
  26. border-radius: 10px;
  27. }
  28. ::-webkit-scrollbar-thumb {
  29. -webkit-border-radius: 10px;
  30. border-radius: 10px;
  31. background: rgba(255, 0, 0, 0.8);
  32. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  33. }
  34. ::-webkit-scrollbar-thumb:window-inactive {
  35. background: rgba(255, 0, 0, 0.4);
  36. } */
  37. /* ::-moz-horizontal-scrollbar {
  38. width: 100px;
  39. background-color: #00ff00;
  40. } */
  41. :root {
  42. scrollbar-color: gray #00000000 !important;
  43. scrollbar-width: 1px 1px !important;
  44. }