Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. .review {
  2. margin: 100px 165px;
  3.  
  4. &__content {
  5. height: 100%;
  6. // padding: 23px 46px;
  7. }
  8.  
  9. .review__content {
  10. &-text {
  11. position: relative;
  12. z-index: 2;
  13. p {
  14. font-size: 0.875rem;
  15. color: #222122;
  16. text-align: left;
  17. padding: 23px 46px;
  18. margin: 0;
  19. line-height: 24px;
  20.  
  21. @include mobile {
  22. font-size: 0.8rem;
  23. }
  24. }
  25. }
  26.  
  27. .review-information {
  28. background-color: #ffffff;
  29. height: 80px;
  30. width: 100%;
  31. position: absolute;
  32. bottom: 0;
  33. left: 0;
  34.  
  35. &__quote {
  36. font-size: 6.25rem;
  37. color: #CFCFCF;
  38. font-weight: bold;
  39. position: absolute;
  40. margin: -16px 0 0 10px;
  41. z-index: 1;
  42.  
  43. &-bottom {
  44. right: 30px !important;
  45. -webkit-transform: rotate(-180deg);
  46. bottom: 63px;
  47. }
  48. }
  49.  
  50. &__inner {
  51. padding: 19px 46px;
  52. display: flex;
  53. }
  54.  
  55. &__details {
  56. margin: 0 0 0 10px;
  57.  
  58. &-info {
  59. span {
  60. font-size: 0.875rem;
  61. }
  62. }
  63.  
  64. .review-details-info {
  65. &__stars {
  66. display: flex;
  67. width: 16px;
  68. height: 16px;
  69. img {
  70. margin: 0 5px 0 0;
  71. color: #EFD358;
  72. }
  73. }
  74. }
  75. }
  76.  
  77. &__image {
  78. border-radius: 50%;
  79. width: 37px;
  80. height: 37px;
  81. border: 5px solid #F3F3F3;
  82. }
  83.  
  84. // span {
  85. // font-size: 0.875rem;
  86. // }
  87.  
  88. &__name {
  89. font-weight: bold;
  90. }
  91. }
  92. }
  93.  
  94. @include touch {
  95. margin: -2rem 0 0 0;
  96. }
  97. }
  98.  
  99.  
  100. .review__slider-slide {
  101. font-size: 18px;
  102. background: #F3F3F3;
  103. height: 274px;
  104. margin: 6rem 0;
  105. transition: all 0.35s ease;
  106. /* Center slide text vertically */
  107. display: -webkit-box;
  108. display: -ms-flexbox;
  109. display: -webkit-flex;
  110. display: flex;
  111. -webkit-box-pack: center;
  112. -ms-flex-pack: center;
  113. -webkit-justify-content: center;
  114. justify-content: center;
  115. -webkit-box-align: center;
  116. -ms-flex-align: center;
  117. -webkit-align-items: center;
  118. align-items: center;
  119. -webkit-box-shadow: 5px 5px 40px 0px rgba(0,0,0,0.12);
  120. -moz-box-shadow: 5px 5px 40px 0px rgba(0,0,0,0.12);
  121. box-shadow: 5px 5px 40px 0px rgba(0,0,0,0.12);
  122.  
  123. // @include mobile {
  124. // width: inherit!important;
  125. // }
  126. }
  127.  
  128. .swiper-slide-next {
  129. margin-top: 80px !important;
  130. -webkit-box-shadow: 5px 5px 40px 0px rgba(0,0,0,0.25);
  131. -moz-box-shadow: 5px 5px 40px 0px rgba(0,0,0,0.25);
  132. box-shadow: 5px 5px 40px 0px rgba(0,0,0,0.25);
  133. }
  134.  
  135. .review-swiper-pagination {
  136. .swiper-pagination-bullet {
  137. background-color: #CFCFCF;
  138. }
  139. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement