default.css 784 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. * {
  2. box-sizing: border-box;
  3. }
  4. *::-webkit-scrollbar {
  5. width: 0.5rem;
  6. background-color: #fff;
  7. }
  8. *::-webkit-scrollbar-thumb {
  9. background-color: #eeeeee;
  10. }
  11. html {
  12. font-size: 16px;
  13. background-color: white;
  14. height: 100%;
  15. }
  16. body {
  17. margin: 0;
  18. padding: 0;
  19. }
  20. input,
  21. textarea {
  22. border: none;
  23. outline: none;
  24. font-family: "generic-family";
  25. }
  26. input::placeholder,
  27. textarea::placeholder {
  28. font-weight: 400;
  29. color: rgba(34, 34, 34, 0.5);
  30. font-family: "generic-family";
  31. }
  32. img {
  33. width: 100%;
  34. object-fit: cover;
  35. }
  36. .a-btn {
  37. width: 9.125rem;
  38. height: 3.5rem;
  39. display: block;
  40. text-decoration: none;
  41. background: #1d52a2;
  42. text-align: center;
  43. line-height: 3.5rem;
  44. user-select: none;
  45. font-size: 1rem;
  46. font-weight: 400;
  47. color: #ffffff;
  48. cursor: pointer;
  49. }