_base.scss
8 years ago
_buttons.scss
8 years ago
_buttons2.scss
8 years ago
_buttons3.scss
8 years ago
_inside.scss
8 years ago
_outside.scss
8 years ago
_pager_buttons.scss
8 years ago
_pager_inside.scss
8 years ago
_pager_text.scss
8 years ago
_sides.scss
8 years ago
_sides_outside.scss
8 years ago
_sides_pager.scss
8 years ago
_text.scss
8 years ago
_buttons2.scss
71 lines
| 1 | .strong-view { |
| 2 | &.controls-style-buttons2 { |
| 3 | .wpmslider-start, |
| 4 | .wpmslider-stop, |
| 5 | .wpmslider-next, |
| 6 | .wpmslider-prev { |
| 7 | font-family: FontAwesome; |
| 8 | display: inline-block; |
| 9 | background: #C0C0C0; |
| 10 | border-radius: 5px; |
| 11 | color: #FFF; |
| 12 | cursor: pointer; |
| 13 | font-size: 16px; |
| 14 | line-height: 27px; |
| 15 | width: 27px; |
| 16 | height: 27px; |
| 17 | text-align: center; |
| 18 | transition: all 0.2s ease; |
| 19 | } |
| 20 | |
| 21 | .wpmslider-start:before { |
| 22 | content: "\f04b"; |
| 23 | position: relative; |
| 24 | left: 1px; |
| 25 | } |
| 26 | |
| 27 | .wpmslider-stop:before { |
| 28 | content: "\f04c"; |
| 29 | } |
| 30 | |
| 31 | .wpmslider-start:hover, |
| 32 | .wpmslider-stop:hover, |
| 33 | .wpmslider-next:hover, |
| 34 | .wpmslider-prev:hover { |
| 35 | background: #333; |
| 36 | } |
| 37 | |
| 38 | &:not(.rtl) { |
| 39 | .wpmslider-prev:before { |
| 40 | content: "\f053"; |
| 41 | position: relative; |
| 42 | left: -1px; |
| 43 | top: 1px; |
| 44 | } |
| 45 | |
| 46 | .wpmslider-next:before { |
| 47 | content: "\f054"; |
| 48 | position: relative; |
| 49 | left: 1px; |
| 50 | top: 1px; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | &.rtl { |
| 55 | .wpmslider-prev:before { |
| 56 | content: "\f054"; |
| 57 | position: relative; |
| 58 | left: 1px; |
| 59 | top: 1px; |
| 60 | } |
| 61 | |
| 62 | .wpmslider-next:before { |
| 63 | content: "\f053"; |
| 64 | position: relative; |
| 65 | left: -1px; |
| 66 | top: 1px; |
| 67 | } |
| 68 | } |
| 69 | } |
| 70 | } |
| 71 |