Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. section.reviews {
  2. margin-top: 100px;
  3. margin-bottom: 50px;
  4.  
  5. .section__reviews {
  6. h2 {
  7. text-align: center;
  8. color: $fc-base-lt;
  9. }
  10.  
  11. @media(max-width: 992px) {
  12. h2 {
  13. font-size: 1rem;
  14. }
  15. }
  16.  
  17. .title__bottom__border {
  18. width: 125px;
  19. margin-top: 5px;
  20. margin-left: auto;
  21. margin-right: auto;
  22. border-bottom: 2px solid $fc-base-lt;
  23. }
  24.  
  25. .btn {
  26. margin-top: 75px !important;
  27. }
  28.  
  29. .review__slider__wrapper {
  30. position: relative;
  31.  
  32. .custom__arrow__left {
  33. &:hover {
  34. cursor: pointer;
  35. }
  36.  
  37. z-index: 1;
  38. position: absolute;
  39. top: 50%;
  40. left: 0;
  41. transform: translateY(-50%);
  42. }
  43.  
  44. .custom__arrow__right {
  45. &:hover {
  46. cursor: pointer;
  47. }
  48.  
  49. z-index: 10;
  50. position: absolute;
  51. top: 50%;
  52. right: 0;
  53. transform: translateY(-50%);
  54. }
  55.  
  56. .review__slider {
  57. position: relative;
  58.  
  59. .review {
  60. text-align: center;
  61. position: relative;
  62.  
  63. .review__stars {
  64. width: 100%;
  65. padding-top: 25px;
  66. margin-bottom: 10px;
  67. display: inline-block;
  68.  
  69. .stars {
  70. display: inline-block;
  71.  
  72. img {
  73. height: 20px;
  74. }
  75. }
  76. }
  77.  
  78. .review__name {
  79. font-size: 0.875rem;
  80. color: $fc-base-lt;
  81. }
  82.  
  83. .review__description {
  84. z-index: 1;
  85. margin-left: auto;
  86. margin-right: auto;
  87. max-width: 750px;
  88. font-size: 1rem;
  89. color: $fc-base-lt;
  90. }
  91.  
  92. .quotes__open {
  93. z-index: -1;
  94. position: absolute;
  95. top: 20px;
  96. left: 160px;
  97. }
  98.  
  99. .quotes__close {
  100. z-index: -1;
  101. position: absolute;
  102. bottom: 30px;
  103. right: 160px;
  104. }
  105. }
  106. }
  107. }
  108. }
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement