|
Revision 21, 0.9 kB
(checked in by admin, 18 years ago)
|
|
|
| Rev | Line | |
|---|
| [21] | 1 | /* - - - - - - - - - - - - - - - - - - - - - |
|---|
| 2 | |
|---|
| 3 | Title : Lightbox CSS |
|---|
| 4 | Author : Kevin Hale |
|---|
| 5 | URL : http://particletree.com/features/lightbox-gone-wild/ |
|---|
| 6 | |
|---|
| 7 | Created : January 13, 2006 |
|---|
| 8 | Modified : February 1, 2006 |
|---|
| 9 | |
|---|
| 10 | - - - - - - - - - - - - - - - - - - - - - */ |
|---|
| 11 | |
|---|
| 12 | #lightbox{ |
|---|
| 13 | display: none; |
|---|
| 14 | position: absolute; |
|---|
| 15 | top: 50%; |
|---|
| 16 | left: 50%; |
|---|
| 17 | z-index: 9999; |
|---|
| 18 | width: 500px; |
|---|
| 19 | height: 400px; |
|---|
| 20 | margin: -220px 0 0 -250px; |
|---|
| 21 | border: 2px solid #000; |
|---|
| 22 | background-color: #FFF; |
|---|
| 23 | /* background: #FDFCE9; */ |
|---|
| 24 | text-align: left; |
|---|
| 25 | } |
|---|
| 26 | #lightbox[id]{ |
|---|
| 27 | position: fixed; |
|---|
| 28 | } |
|---|
| 29 | |
|---|
| 30 | #overlay{ |
|---|
| 31 | display: none; |
|---|
| 32 | position: absolute; |
|---|
| 33 | top: 0; |
|---|
| 34 | left: 0; |
|---|
| 35 | width: 100%; |
|---|
| 36 | height: 100%; |
|---|
| 37 | z-index: 5000; |
|---|
| 38 | background-color: #000; |
|---|
| 39 | -moz-opacity: 0.8; |
|---|
| 40 | opacity: .80; |
|---|
| 41 | filter: alpha(opacity=80); |
|---|
| 42 | } |
|---|
| 43 | #overlay[id]{ |
|---|
| 44 | position: fixed; |
|---|
| 45 | } |
|---|
| 46 | |
|---|
| 47 | #lightbox.done #lbLoadMessage{ |
|---|
| 48 | display: none; |
|---|
| 49 | } |
|---|
| 50 | #lightbox.done #lbContent{ |
|---|
| 51 | display: block; |
|---|
| 52 | } |
|---|
| 53 | #lightbox.loading #lbContent{ |
|---|
| 54 | display: none; |
|---|
| 55 | } |
|---|
| 56 | #lightbox.loading #lbLoadMessage{ |
|---|
| 57 | display: block; |
|---|
| 58 | } |
|---|