_app-shot.scss 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .app-shot-one {
  2. padding-top: 120px;
  3. padding-bottom: 115px;
  4. position: relative;
  5. &__bg {
  6. position: absolute;
  7. bottom: 25%;
  8. left: 0;
  9. }
  10. .container-fluid {
  11. max-width: 1595px;
  12. width: 100%;
  13. position: relative;
  14. }
  15. .app-shot-one__carousel {
  16. padding-top: 100.5px;
  17. padding-bottom: 100.5px;
  18. margin-top: -20px;
  19. &:before {
  20. content: '';
  21. position: absolute;
  22. top: 50%;
  23. left: 50%;
  24. transform: translate(-50%, -49%) scaleY(1.0);
  25. background-image: url(../images/app-shots/app-screen-moc.png);
  26. background-position: center center;
  27. background-repeat: no-repeat;
  28. width: 423px;
  29. height: 739px;
  30. @media(max-width: 1440px) {
  31. transform: translate(-50%, -49%) scaleY(.95);
  32. }
  33. @media(max-width: 1280px) {
  34. transform: translate(-50%, -49%) scale(.8);
  35. }
  36. }
  37. .owl-dots {
  38. position: absolute;
  39. bottom: -80px;
  40. left: 0;
  41. text-align: center;
  42. z-index: 10;
  43. width: 100%;
  44. .owl-dot {
  45. span {
  46. width: 7px;
  47. height: 7px;
  48. background-color: #1c1d3f;
  49. transform: scale(1);
  50. opacity: 0.2;
  51. margin: 0 3px;
  52. transition: transform .4s ease, opacity .4s ease, background .4s ease;
  53. }
  54. &:hover span,
  55. &.active span {
  56. opacity: 1;
  57. background-color: #1bc9f4;
  58. transform: scale(1.285);
  59. }
  60. }
  61. }
  62. }
  63. .owl-item img {
  64. transition: transform .4s ease;
  65. }
  66. }