_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
_buttons3.scss
55 lines
| 1 | .strong-view { |
| 2 | &.controls-style-buttons3 { |
| 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: 28px; |
| 12 | line-height: 28px; |
| 13 | //width: 28px; |
| 14 | //height: 28px; |
| 15 | text-align: center; |
| 16 | transition: all 0.2s ease; |
| 17 | } |
| 18 | |
| 19 | .wpmslider-start:before { |
| 20 | content: "\f144"; |
| 21 | } |
| 22 | |
| 23 | .wpmslider-stop:before { |
| 24 | content: "\f28b"; |
| 25 | } |
| 26 | |
| 27 | .wpmslider-start:hover, |
| 28 | .wpmslider-stop:hover, |
| 29 | .wpmslider-next:hover, |
| 30 | .wpmslider-prev:hover { |
| 31 | color: #333; |
| 32 | } |
| 33 | |
| 34 | &:not(.rtl) { |
| 35 | .wpmslider-prev:before { |
| 36 | content: "\f137"; |
| 37 | } |
| 38 | |
| 39 | .wpmslider-next:before { |
| 40 | content: "\f138"; |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | &.rtl { |
| 45 | .wpmslider-prev:before { |
| 46 | content: "\f138"; |
| 47 | } |
| 48 | |
| 49 | .wpmslider-next:before { |
| 50 | content: "\f137"; |
| 51 | } |
| 52 | } |
| 53 | } |
| 54 | } |
| 55 |