Nessuna descrizione
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.

_title-section.scss 623B

1234567891011121314151617181920212223242526272829303132
  1. /*******************************
  2. section-title style
  3. *******************************/
  4. .section-title {
  5. padding-bottom: 50px;
  6. .title {
  7. position: relative;
  8. font-size: 30px;
  9. font-weight: fontweight(bold);
  10. text-transform: capitalize;
  11. @include max-screen(480) {
  12. font-size: 20px;
  13. }
  14. &::after {
  15. position: absolute;
  16. left: 0;
  17. right: 0;
  18. margin: 0 auto;
  19. bottom: 0px;
  20. width: 60px;
  21. height: 2px;
  22. content: "";
  23. background: $theme-color;
  24. }
  25. }
  26. }
  27. /*******************************
  28. section-title style End
  29. *******************************/