Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_utilities.scss 521B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // colors
  2. .bg-green {
  3. background-color: #3bb78f;
  4. background: linear-gradient(90deg, #3bb78f 0%, rgba(11, 171, 100, 1) 35%, rgba(59, 183, 143, 1) 100%);
  5. }
  6. // font size
  7. .font-3 {
  8. font-size: 3rem;
  9. }
  10. .font-1_5 {
  11. font-size: 2rem;
  12. }
  13. .subtitle_1 {
  14. font-size: 1.5rem;
  15. }
  16. .gap-1 {
  17. gap: 0.7rem;
  18. }
  19. .banner_heading_4 {
  20. font-size: 3rem;
  21. }
  22. // padding
  23. .padding_top_14 {
  24. padding-top: 14rem;
  25. }
  26. // heights
  27. .vh_60{
  28. height: 60vh;
  29. }
  30. .vh-77{
  31. height: 77vh;
  32. }
  33. .vh-85 {
  34. height: 85vh;
  35. }
  36. .vh-15 {
  37. height: 15vh;
  38. }