Advertisement
Eulis

other-services-carousel.css

Oct 9th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. .other-services-carousel{
  2. margin-bottom: 150px;
  3.  
  4. .services-carousel-card{
  5. position: relative;
  6. display: flex!important;
  7. justify-content: center;
  8. }
  9. .carousel-services-image {
  10. width: 32.8vw;
  11. height: 500px;
  12. object-fit: cover;
  13. }
  14. .carousel-gradient {
  15. position: absolute;
  16. bottom: 0;
  17. width: 100%;
  18. }
  19. .carousel-services-text{
  20. position: absolute;
  21. bottom: 2rem;
  22. left: 3rem;
  23. color: white;
  24. font-size: 1.2rem;
  25. }
  26. .other-services-carousel-card-line {
  27. position: absolute;
  28. bottom: 2.8rem;
  29. left: 2.8rem;
  30. height: .2rem;
  31. width: 4rem;
  32. background-color: #fff;
  33. }
  34. .carousel-arrow {
  35. position: absolute;
  36. bottom: -2.3rem;
  37. }
  38. .prev-arrow {
  39. left: calc(50% - 1.3rem);
  40. z-index: 9;
  41. }
  42.  
  43. .next-arrow {
  44. transform: rotate(180deg);
  45. right: calc(50% - 1.3rem);
  46. }
  47.  
  48. .carousel-dots {
  49. margin-top: 3.3rem;
  50. width: 100%;
  51. }
  52.  
  53. }
  54.  
  55. @media(max-width: 1025px) {
  56. .other-services-carousel {
  57. .carousel-services-image{
  58. width: 95%;
  59. }
  60. }
  61.  
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement