Mercurial > repos > rlegendre > ribo_tools
comparison lightbox/css/lightbox.css @ 8:adc01e560eae
Uploaded
| author | rlegendre |
|---|---|
| date | Mon, 20 Oct 2014 11:34:11 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 7:015db5db052c | 8:adc01e560eae |
|---|---|
| 1 /* line 7, ../sass/lightbox.sass */ | |
| 2 body:after { | |
| 3 content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png); | |
| 4 display: none; | |
| 5 } | |
| 6 | |
| 7 /* line 11, ../sass/lightbox.sass */ | |
| 8 .lightboxOverlay { | |
| 9 position: absolute; | |
| 10 top: 0; | |
| 11 left: 0; | |
| 12 z-index: 9999; | |
| 13 background-color: black; | |
| 14 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); | |
| 15 opacity: 0.8; | |
| 16 display: none; | |
| 17 } | |
| 18 | |
| 19 /* line 20, ../sass/lightbox.sass */ | |
| 20 .lightbox { | |
| 21 position: absolute; | |
| 22 left: 0; | |
| 23 width: 100%; | |
| 24 z-index: 10000; | |
| 25 text-align: center; | |
| 26 line-height: 0; | |
| 27 font-weight: normal; | |
| 28 } | |
| 29 /* line 28, ../sass/lightbox.sass */ | |
| 30 .lightbox .lb-image { | |
| 31 display: block; | |
| 32 height: auto; | |
| 33 -webkit-border-radius: 3px; | |
| 34 -moz-border-radius: 3px; | |
| 35 -ms-border-radius: 3px; | |
| 36 -o-border-radius: 3px; | |
| 37 border-radius: 3px; | |
| 38 } | |
| 39 /* line 32, ../sass/lightbox.sass */ | |
| 40 .lightbox a img { | |
| 41 border: none; | |
| 42 } | |
| 43 | |
| 44 /* line 35, ../sass/lightbox.sass */ | |
| 45 .lb-outerContainer { | |
| 46 position: relative; | |
| 47 background-color: white; | |
| 48 *zoom: 1; | |
| 49 width: 250px; | |
| 50 height: 250px; | |
| 51 margin: 0 auto; | |
| 52 -webkit-border-radius: 4px; | |
| 53 -moz-border-radius: 4px; | |
| 54 -ms-border-radius: 4px; | |
| 55 -o-border-radius: 4px; | |
| 56 border-radius: 4px; | |
| 57 } | |
| 58 /* line 38, ../../../../.rvm/gems/ruby-1.9.3-p392/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */ | |
| 59 .lb-outerContainer:after { | |
| 60 content: ""; | |
| 61 display: table; | |
| 62 clear: both; | |
| 63 } | |
| 64 | |
| 65 /* line 44, ../sass/lightbox.sass */ | |
| 66 .lb-container { | |
| 67 padding: 4px; | |
| 68 } | |
| 69 | |
| 70 /* line 47, ../sass/lightbox.sass */ | |
| 71 .lb-loader { | |
| 72 position: absolute; | |
| 73 top: 43%; | |
| 74 left: 0%; | |
| 75 height: 25%; | |
| 76 width: 100%; | |
| 77 text-align: center; | |
| 78 line-height: 0; | |
| 79 } | |
| 80 | |
| 81 /* line 56, ../sass/lightbox.sass */ | |
| 82 .lb-cancel { | |
| 83 display: block; | |
| 84 width: 32px; | |
| 85 height: 32px; | |
| 86 margin: 0 auto; | |
| 87 background: url(../img/loading.gif) no-repeat; | |
| 88 } | |
| 89 | |
| 90 /* line 63, ../sass/lightbox.sass */ | |
| 91 .lb-nav { | |
| 92 position: absolute; | |
| 93 top: 0; | |
| 94 left: 0; | |
| 95 height: 100%; | |
| 96 width: 100%; | |
| 97 z-index: 10; | |
| 98 } | |
| 99 | |
| 100 /* line 71, ../sass/lightbox.sass */ | |
| 101 .lb-container > .nav { | |
| 102 left: 0; | |
| 103 } | |
| 104 | |
| 105 /* line 74, ../sass/lightbox.sass */ | |
| 106 .lb-nav a { | |
| 107 outline: none; | |
| 108 } | |
| 109 | |
| 110 /* line 77, ../sass/lightbox.sass */ | |
| 111 .lb-prev, .lb-next { | |
| 112 width: 49%; | |
| 113 height: 100%; | |
| 114 cursor: pointer; | |
| 115 /* Trick IE into showing hover */ | |
| 116 display: block; | |
| 117 } | |
| 118 | |
| 119 /* line 84, ../sass/lightbox.sass */ | |
| 120 .lb-prev { | |
| 121 left: 0; | |
| 122 float: left; | |
| 123 } | |
| 124 /* line 87, ../sass/lightbox.sass */ | |
| 125 .lb-prev:hover { | |
| 126 background: url(../img/prev.png) left 48% no-repeat; | |
| 127 } | |
| 128 | |
| 129 /* line 90, ../sass/lightbox.sass */ | |
| 130 .lb-next { | |
| 131 right: 0; | |
| 132 float: right; | |
| 133 } | |
| 134 /* line 93, ../sass/lightbox.sass */ | |
| 135 .lb-next:hover { | |
| 136 background: url(../img/next.png) right 48% no-repeat; | |
| 137 } | |
| 138 | |
| 139 /* line 96, ../sass/lightbox.sass */ | |
| 140 .lb-dataContainer { | |
| 141 margin: 0 auto; | |
| 142 padding-top: 5px; | |
| 143 *zoom: 1; | |
| 144 width: 100%; | |
| 145 -moz-border-radius-bottomleft: 4px; | |
| 146 -webkit-border-bottom-left-radius: 4px; | |
| 147 border-bottom-left-radius: 4px; | |
| 148 -moz-border-radius-bottomright: 4px; | |
| 149 -webkit-border-bottom-right-radius: 4px; | |
| 150 border-bottom-right-radius: 4px; | |
| 151 } | |
| 152 /* line 38, ../../../../.rvm/gems/ruby-1.9.3-p392/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */ | |
| 153 .lb-dataContainer:after { | |
| 154 content: ""; | |
| 155 display: table; | |
| 156 clear: both; | |
| 157 } | |
| 158 | |
| 159 /* line 103, ../sass/lightbox.sass */ | |
| 160 .lb-data { | |
| 161 padding: 0 4px; | |
| 162 color: #bbbbbb; | |
| 163 } | |
| 164 /* line 106, ../sass/lightbox.sass */ | |
| 165 .lb-data .lb-details { | |
| 166 width: 85%; | |
| 167 float: left; | |
| 168 text-align: left; | |
| 169 line-height: 1.1em; | |
| 170 } | |
| 171 /* line 111, ../sass/lightbox.sass */ | |
| 172 .lb-data .lb-caption { | |
| 173 font-size: 13px; | |
| 174 font-weight: bold; | |
| 175 line-height: 1em; | |
| 176 } | |
| 177 /* line 115, ../sass/lightbox.sass */ | |
| 178 .lb-data .lb-number { | |
| 179 display: block; | |
| 180 clear: left; | |
| 181 padding-bottom: 1em; | |
| 182 font-size: 12px; | |
| 183 color: #999999; | |
| 184 } | |
| 185 /* line 121, ../sass/lightbox.sass */ | |
| 186 .lb-data .lb-close { | |
| 187 display: block; | |
| 188 float: right; | |
| 189 width: 30px; | |
| 190 height: 30px; | |
| 191 background: url(../img/close.png) top right no-repeat; | |
| 192 text-align: right; | |
| 193 outline: none; | |
| 194 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); | |
| 195 opacity: 0.7; | |
| 196 } | |
| 197 /* line 130, ../sass/lightbox.sass */ | |
| 198 .lb-data .lb-close:hover { | |
| 199 cursor: pointer; | |
| 200 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); | |
| 201 opacity: 1; | |
| 202 } |
