Advertisement
Guest User

homepage testimonials scss

a guest
Oct 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. /* Home - Testimonials
  2. -------------------------------------------------- */
  3. .section-home-testimonials {
  4. @include media-breakpoint-down(sm) {
  5. padding-bottom: 0rem !important;
  6. }
  7. .testimonials-list {
  8. @include media-breakpoint-down(sm) {
  9. margin-bottom: 1.5rem !important;
  10. }
  11. .testimonials-item {
  12. margin: 10px;
  13. .testimonials-content {
  14. border-radius: 2px;
  15. min-height: auto !important;
  16. @include media-breakpoint-up(md) {
  17. box-shadow: $box-shadow;
  18. padding: 1.5rem;
  19. }
  20. @include media-breakpoint-up(lg) {
  21. min-height: 350px !important;
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. text-align: center;
  26. }
  27. .testimonials-img {
  28. img {
  29. width: 55px;
  30. height: 55px;
  31. border-radius: 50%;
  32. margin: 0 auto;
  33. float: left;
  34. @include media-breakpoint-up(md) {
  35. width: 65px;
  36. height: 65px;
  37. }
  38. @include media-breakpoint-up(lg) {
  39. float: none;
  40. display: block;
  41. margin-bottom: 1rem;
  42. }
  43. }
  44. }
  45. .testimonial-text {
  46. font-weight: $font-weight-light;
  47. font-size: .9rem;
  48. line-height: 1.6;
  49. @include media-breakpoint-up(md) {
  50. padding-left: 90px;
  51. }
  52. @include media-breakpoint-up(lg) {
  53. padding-left: 0;
  54. }
  55. }
  56. .rating {
  57. margin-bottom: .5rem;
  58. padding-left: 70px;
  59. i {
  60. font-size: 0.8rem;
  61. @include media-breakpoint-up(lg) {
  62. font-size: 1rem;
  63. }
  64. }
  65. .fas {color: gold;}
  66. .far {color: gold;}
  67. @include media-breakpoint-up(md) {
  68. padding-left: 90px;
  69. }
  70. @include media-breakpoint-up(lg) {
  71. padding-left: 0;
  72. }
  73. }
  74. .testimonial-name {
  75. font-family: $font-family-sans-serif;
  76. font-size: .8rem;
  77. margin-bottom: .1rem;
  78. padding-left: 70px;
  79. @include media-breakpoint-up(md) {
  80. padding-left: 90px;
  81. font-size: .9rem;
  82. }
  83. @include media-breakpoint-up(lg) {
  84. padding-left: 0;
  85. margin-top: .1rem;
  86. }
  87. }
  88. .testimonial-username {
  89. font-family: $font-family-sans-serif;
  90. font-size: .7rem;
  91. color: $primary;
  92. padding-left: 70px;
  93. display: block;
  94. @include media-breakpoint-up(md) {
  95. font-size: .8rem;
  96. padding-left: 90px;
  97. }
  98. @include media-breakpoint-up(lg) {
  99. padding-left: 0;
  100. }
  101. }
  102. .testimonials-header {
  103. @include media-breakpoint-up(lg) {
  104. margin-bottom: auto;
  105. }
  106. }
  107. .testimonials-footer {
  108. // @include media-breakpoint-up(lg) {
  109. // padding-left: 0;
  110. // }
  111. }
  112. }
  113. }
  114. + .btn-link-w-chevron {
  115. margin-top: -1rem !important;
  116. align-self: center;
  117. }
  118. .slick-dots {
  119. bottom: -20px;
  120. @include media-breakpoint-up(sm) {
  121. bottom: -25px;
  122. }
  123. }
  124. }
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement