No Description
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.

_bread-crumbs.scss 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /****************************
  2. breadcrumb-section
  3. ****************************/
  4. .breadcrumb-section {
  5. @include max-screen(767) {
  6. padding-top: 50px;
  7. padding-bottom: 50px;
  8. }
  9. @include max-screen(1200) {
  10. padding-top: 80px;
  11. padding-bottom: 80px;
  12. }
  13. }
  14. .breadcrumb-item {
  15. text-transform: capitalize;
  16. line-height: 1;
  17. padding: 0px !important;
  18. @include max-screen(450) {
  19. margin: 5px 0px;
  20. }
  21. a {
  22. display: inline-block;
  23. position: relative;
  24. color: $color-dark !important;
  25. line-height: 1;
  26. }
  27. }
  28. .breadcrumb-item + .breadcrumb-item {
  29. &::before {
  30. content: "\f3d3";
  31. color: $body-color !important;
  32. margin: 0 10px;
  33. content: "\f3d3";
  34. font-family: "Ionicons";
  35. padding: 0px !important;
  36. position: relative;
  37. top: 2px;
  38. font-size: 14px;
  39. }
  40. }
  41. // theme1
  42. .theme1 {
  43. .breadcrumb-item {
  44. a {
  45. &:hover {
  46. color: $theme-color !important;
  47. }
  48. }
  49. &.active {
  50. color: $theme-color;
  51. }
  52. }
  53. }
  54. .breadcrumb-section {
  55. .section-title {
  56. padding-bottom: 30px;
  57. }
  58. }
  59. /****************************
  60. breadcrumb-section END
  61. ****************************/