globals.css 806 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. :root {
  2. /* color */
  3. --white: white;
  4. --gray: rgb(250, 250, 250);
  5. --primary: rgb(29, 147, 171);
  6. --second: rgb(231, 248, 255);
  7. --hover-color: #f3f3f3;
  8. /* shadow */
  9. --shadow: 50px 50px 100px 10px rgb(0, 0, 0, 0.1);
  10. --card-shadow:0px 2px 4px 0px rgb(0, 0, 0, 0.05);
  11. /* stroke */
  12. --border-in-light: 1px solid rgb(222, 222, 222);
  13. }
  14. body {
  15. margin: 0;
  16. padding: 0;
  17. background-color: var(--gray);
  18. height: 100vh;
  19. width: 100vw;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. user-select: none;
  24. }
  25. ::-webkit-scrollbar {
  26. width: 20px;
  27. }
  28. ::-webkit-scrollbar-track {
  29. background-color: transparent;
  30. }
  31. ::-webkit-scrollbar-thumb {
  32. background-color: rgba(0, 0, 0, 0.05);
  33. border-radius: 20px;
  34. border: 6px solid transparent;
  35. background-clip: content-box;
  36. }