globals.css 911 B

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