暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.css 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. 0 - 600px: Phone
  3. 600 - 900px: Tablet portrait
  4. 900 - 1200px: Tablet landscape
  5. [1200 - 1800] is where our normal styles apply
  6. 1800px + : Big desktop
  7. $breakpoint arguement choices:
  8. - phone
  9. - tab-port
  10. - tab-land
  11. - big-desktop
  12. ORDER: Base + typography > general layout + grid > page layout > components
  13. 1em = 16px
  14. */
  15. *,
  16. *::after,
  17. *::before {
  18. margin: 0;
  19. padding: 0;
  20. box-sizing: inherit; }
  21. html {
  22. font-size: 100%; }
  23. body {
  24. box-sizing: border-box; }
  25. @media only screen and (max-width: 56.25em) {
  26. body {
  27. padding: 0; } }
  28. .bg-green {
  29. background-color: #3bb78f;
  30. background: linear-gradient(90deg, #3bb78f 0%, #0bab64 35%, #3bb78f 100%); }
  31. .font-3 {
  32. font-size: 3rem; }
  33. .font-1_5 {
  34. font-size: 2rem; }
  35. .subtitle_1 {
  36. font-size: 1.5rem; }
  37. .gap-1 {
  38. gap: 0.7rem; }
  39. .banner_heading_4 {
  40. font-size: 3rem; }
  41. .padding_top_14 {
  42. padding-top: 14rem; }
  43. .vh_60 {
  44. height: 60vh; }
  45. .vh-77 {
  46. height: 77vh; }
  47. .vh-85 {
  48. height: 85vh; }
  49. .vh-15 {
  50. height: 15vh; }
  51. .button_dark {
  52. clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  53. padding-right: 1.7rem;
  54. padding-bottom: 0.6rem;
  55. padding-top: 0.6rem;
  56. border-radius: 10px; }
  57. .photo_dual {
  58. width: 40rem; }
  59. .price_footer {
  60. background-color: #52cba5; }
  61. .boxImgContainer {
  62. width: 4rem; }
  63. .priceCut_multi {
  64. font-size: .7rem; }