| 1 |
@charset "UTF-8"; |
| 2 |
/* |
| 3 |
* blueimp Gallery Indicator CSS |
| 4 |
* https://github.com/blueimp/Gallery |
| 5 |
* |
| 6 |
* Copyright 2013, Sebastian Tschan |
| 7 |
* https://blueimp.net |
| 8 |
* |
| 9 |
* Licensed under the MIT license: |
| 10 |
* https://opensource.org/licenses/MIT |
| 11 |
*/ |
| 12 |
|
| 13 |
.blueimp-gallery > .indicator { |
| 14 |
position: absolute; |
| 15 |
top: auto; |
| 16 |
right: 15px; |
| 17 |
bottom: 15px; |
| 18 |
left: 15px; |
| 19 |
margin: 0 40px; |
| 20 |
padding: 0; |
| 21 |
list-style: none; |
| 22 |
text-align: center; |
| 23 |
line-height: 10px; |
| 24 |
display: none; |
| 25 |
-webkit-user-select: none; |
| 26 |
-khtml-user-select: none; |
| 27 |
-moz-user-select: none; |
| 28 |
-ms-user-select: none; |
| 29 |
user-select: none; |
| 30 |
} |
| 31 |
.blueimp-gallery > .indicator > li { |
| 32 |
display: inline-block; |
| 33 |
position: relative; |
| 34 |
width: 9px; |
| 35 |
height: 9px; |
| 36 |
margin: 6px 3px 0 3px; |
| 37 |
-webkit-box-sizing: content-box; |
| 38 |
-moz-box-sizing: content-box; |
| 39 |
box-sizing: content-box; |
| 40 |
border: 1px solid transparent; |
| 41 |
background: #ccc; |
| 42 |
background: rgba(255, 255, 255, 0.25) center no-repeat; |
| 43 |
border-radius: 5px; |
| 44 |
box-shadow: 0 0 2px #000; |
| 45 |
opacity: 0.5; |
| 46 |
cursor: pointer; |
| 47 |
} |
| 48 |
|
| 49 |
/* IE7 fixes */ |
| 50 |
* + html .blueimp-gallery > .indicator > li { |
| 51 |
display: inline; |
| 52 |
} |
| 53 |
|
| 54 |
.blueimp-gallery > .indicator > li:hover, |
| 55 |
.blueimp-gallery > .indicator > .active { |
| 56 |
background-color: #fff; |
| 57 |
border-color: #fff; |
| 58 |
opacity: 1; |
| 59 |
} |
| 60 |
|
| 61 |
.blueimp-gallery > .indicator > li:after { |
| 62 |
opacity: 0; |
| 63 |
display: block; |
| 64 |
position: absolute; |
| 65 |
content: ''; |
| 66 |
top: -5em; |
| 67 |
left: 4px; |
| 68 |
width: 75px; |
| 69 |
height: 75px; |
| 70 |
transition: transform 600ms ease-out, opacity 400ms ease-out; |
| 71 |
transform: translateX(-50%) translateY(0) translateZ(0px); |
| 72 |
pointer-events: none; |
| 73 |
} |
| 74 |
|
| 75 |
.blueimp-gallery > .indicator > li:hover:after { |
| 76 |
opacity: 1; |
| 77 |
border-radius: 50%; |
| 78 |
background: inherit; |
| 79 |
transform: translateX(-50%) translateY(-5px) translateZ(0px); |
| 80 |
} |
| 81 |
|
| 82 |
.blueimp-gallery > .indicator > .active:after { |
| 83 |
display: none; |
| 84 |
} |
| 85 |
|
| 86 |
.blueimp-gallery-controls > .indicator { |
| 87 |
display: block; |
| 88 |
/* Fix z-index issues (controls behind slide element) on Android: */ |
| 89 |
-webkit-transform: translateZ(0); |
| 90 |
-moz-transform: translateZ(0); |
| 91 |
-ms-transform: translateZ(0); |
| 92 |
-o-transform: translateZ(0); |
| 93 |
transform: translateZ(0); |
| 94 |
} |
| 95 |
.blueimp-gallery-single > .indicator { |
| 96 |
display: none; |
| 97 |
} |
| 98 |
|