admin-folders.css
7 years ago
admin-galleries.css
7 years ago
admin-post.css
7 years ago
admin.css
7 years ago
gallery-basicgrid.css
7 years ago
gallery-basicmasonry.css
7 years ago
gallery.css
7 years ago
gallery-basicmasonry.css
87 lines
| 1 | .rl-basicmasonry-gallery { |
| 2 | position: relative; |
| 3 | z-index: 2; |
| 4 | display: block; |
| 5 | margin: 0 auto; |
| 6 | } |
| 7 | .rl-grid-hidden { |
| 8 | position: fixed !important; |
| 9 | z-index: 1; |
| 10 | top: 0; |
| 11 | left: 0; |
| 12 | width: 100%; |
| 13 | pointer-events: none; |
| 14 | opacity: 0; |
| 15 | } |
| 16 | .rl-basicmasonry-gallery a, |
| 17 | .rl-basicmasonry-gallery a { |
| 18 | border: none; |
| 19 | outline: none; |
| 20 | } |
| 21 | .rl-basicmasonry-gallery .rl-gallery-item img { |
| 22 | display: block; |
| 23 | max-width: 100% !important; |
| 24 | margin: 0 !important; |
| 25 | height: auto; |
| 26 | } |
| 27 | .rl-grid-sizer { |
| 28 | margin-bottom: 0 !important; |
| 29 | } |
| 30 | .js .rl-grid-loading::before, |
| 31 | .js .rl-grid-loading::after { |
| 32 | content: ''; |
| 33 | z-index: 1000; |
| 34 | } |
| 35 | .js .rl-gallery-item { |
| 36 | visibility: visible; |
| 37 | } |
| 38 | .js .rl-grid-loading .rl-gallery-item { |
| 39 | visibility: hidden; |
| 40 | } |
| 41 | .js .rl-grid-loading::before { |
| 42 | position: absolute; |
| 43 | top: 0; |
| 44 | left: 0; |
| 45 | width: 100%; |
| 46 | height: 100%; |
| 47 | min-height: 100%; |
| 48 | } |
| 49 | .js .rl-grid-loading::after { |
| 50 | position: absolute; |
| 51 | top: calc(25vh - 15px); |
| 52 | left: 50%; |
| 53 | width: 30px; |
| 54 | height: 30px; |
| 55 | margin: 0 0 0 -15px; |
| 56 | border: 4px solid #fff; |
| 57 | border-bottom-color: #ccc; |
| 58 | border-radius: 50%; |
| 59 | animation: animLoader 0.8s linear forwards infinite; |
| 60 | } |
| 61 | .rl-grid-deco { |
| 62 | position: absolute; |
| 63 | top: 0; |
| 64 | left: 0; |
| 65 | pointer-events: none; |
| 66 | } |
| 67 | |
| 68 | .rl-grid-deco path { |
| 69 | fill: none; |
| 70 | stroke: rgba(0,0,0,0.2); |
| 71 | stroke-width: 1px; |
| 72 | } |
| 73 | |
| 74 | .rl-grid-reveal { |
| 75 | position: absolute; |
| 76 | z-index: 50; |
| 77 | top: 0; |
| 78 | left: 0; |
| 79 | width: 100%; |
| 80 | height: 100%; |
| 81 | pointer-events: none; |
| 82 | opacity: 0; |
| 83 | background-color: rgba(0,0,0,0.2); |
| 84 | } |
| 85 | @keyframes animLoader { |
| 86 | to { transform: rotate(360deg); } |
| 87 | } |