_base.scss
1 year ago
_buttons.scss
1 year ago
_buttons2.scss
1 year ago
_buttons3.scss
1 year ago
_inside.scss
1 year ago
_outside.scss
1 year ago
_pager_buttons.scss
1 year ago
_pager_inside.scss
1 year ago
_pager_text.scss
1 year ago
_sides.scss
1 year ago
_sides_outside.scss
1 year ago
_sides_pager.scss
1 year ago
_text.scss
1 year ago
_base.scss
76 lines
| 1 | /* =bxSlider structure |
| 2 | ---------------------------------------------------------*/ |
| 3 | .strong-view { |
| 4 | .wpmslider-wrapper { |
| 5 | position: relative; |
| 6 | margin: 0 auto; |
| 7 | padding: 0; |
| 8 | *zoom: 1; |
| 9 | -ms-touch-action: pan-y; |
| 10 | touch-action: pan-y; |
| 11 | direction: ltr; |
| 12 | } |
| 13 | |
| 14 | .wpmslider { |
| 15 | margin: 0; |
| 16 | padding: 0; |
| 17 | } |
| 18 | |
| 19 | .wpmslider-viewport { |
| 20 | /* fix other elements on the page moving (on Chrome) */ |
| 21 | -webkit-transform: translatez(0); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | /* =pager |
| 26 | ---------------------------------------------------------*/ |
| 27 | .strong-view { |
| 28 | .wpmslider-pager { |
| 29 | display: inline-block; |
| 30 | } |
| 31 | |
| 32 | &.rtl { |
| 33 | .wpmslider-pager { |
| 34 | direction: rtl; |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | .wpmslider-pager-item { |
| 39 | display: inline-block; |
| 40 | } |
| 41 | |
| 42 | .wpmslider-pager-link { |
| 43 | text-decoration: none; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | /* =controls |
| 48 | ---------------------------------------------------------*/ |
| 49 | .strong-view { |
| 50 | .wpmslider-start, |
| 51 | .wpmslider-stop, |
| 52 | .wpmslider-next, |
| 53 | .wpmslider-prev { |
| 54 | z-index: 5; |
| 55 | } |
| 56 | |
| 57 | .wpmslider-controls-auto, |
| 58 | .wpmslider-controls-direction { |
| 59 | display: inline-block; |
| 60 | vertical-align: middle; |
| 61 | } |
| 62 | |
| 63 | .wpmslider-controls { |
| 64 | a { |
| 65 | box-shadow: none; |
| 66 | text-decoration: none; |
| 67 | |
| 68 | &:hover, |
| 69 | &:active, |
| 70 | &:focus { |
| 71 | outline: 0; |
| 72 | } |
| 73 | } |
| 74 | } |
| 75 | } |
| 76 |