Нема описа
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.

_utilities.scss 702B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. .font-1_7{
  14. font-size: 1.7rem;
  15. }
  16. .font-2{
  17. font-size: 2.2rem;
  18. }
  19. .font-2_2{
  20. font-size: 2.2rem;
  21. }
  22. .subtitle_1 {
  23. font-size: 1.5rem;
  24. }
  25. .gap-1 {
  26. gap: 0.7rem;
  27. }
  28. .banner_heading_4 {
  29. font-size: 3rem;
  30. }
  31. // padding
  32. .padding_top_14 {
  33. padding-top: 14rem;
  34. }
  35. .p-6{
  36. padding:5rem;
  37. }
  38. // heights
  39. .vh_60{
  40. height: 60vh;
  41. }
  42. .vh-77{
  43. height: 77vh;
  44. }
  45. .vh-85 {
  46. height: 85vh;
  47. }
  48. .vh-15 {
  49. height: 15vh;
  50. }
  51. // font weight
  52. .fw-600{
  53. font-weight: 600;
  54. }