_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
_buttons.scss
61 lines
| 1 | .strong-view { |
| 2 | &.controls-style-buttons { |
| 3 | .wpmslider-start, |
| 4 | .wpmslider-stop, |
| 5 | .wpmslider-next, |
| 6 | .wpmslider-prev { |
| 7 | font-family: FontAwesome; |
| 8 | display: inline-block; |
| 9 | color: #999; |
| 10 | cursor: pointer; |
| 11 | font-size: 24px; |
| 12 | line-height: 24px; |
| 13 | width: 24px; |
| 14 | height: 24px; |
| 15 | text-align: center; |
| 16 | transition: all 0.2s ease; |
| 17 | } |
| 18 | |
| 19 | .wpmslider-start:before, |
| 20 | .wpmslider-stop:before { |
| 21 | position: relative; |
| 22 | top: -1px; |
| 23 | } |
| 24 | |
| 25 | .wpmslider-start:before { |
| 26 | content: "\f04b"; |
| 27 | } |
| 28 | |
| 29 | .wpmslider-stop:before { |
| 30 | content: "\f04c"; |
| 31 | } |
| 32 | |
| 33 | .wpmslider-start:hover, |
| 34 | .wpmslider-stop:hover, |
| 35 | .wpmslider-next:hover, |
| 36 | .wpmslider-prev:hover { |
| 37 | color: #111; |
| 38 | } |
| 39 | |
| 40 | &:not(.rtl) { |
| 41 | .wpmslider-prev:before { |
| 42 | content: "\f053"; |
| 43 | } |
| 44 | |
| 45 | .wpmslider-next:before { |
| 46 | content: "\f054"; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | &.rtl { |
| 51 | .wpmslider-prev:before { |
| 52 | content: "\f054"; |
| 53 | } |
| 54 | |
| 55 | .wpmslider-next:before { |
| 56 | content: "\f053"; |
| 57 | } |
| 58 | } |
| 59 | } |
| 60 | } |
| 61 |