diff options
| author | pepperpepperpepper <pepper@scannerjammer.com> | 2015-11-16 16:35:11 -0800 |
|---|---|---|
| committer | pepperpepperpepper <pepper@scannerjammer.com> | 2015-11-16 16:35:11 -0800 |
| commit | 24e05a0b065b7d01417efeabb07523b3cc8c0bf0 (patch) | |
| tree | ce3b20a1ff239d2e10986806b0df6a34620bcf78 /gallery/style.css | |
| parent | 288c39d3b67064c8e7f5dbea8dc5bbb15a19828d (diff) | |
gallery first draft
Diffstat (limited to 'gallery/style.css')
| -rw-r--r-- | gallery/style.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/gallery/style.css b/gallery/style.css new file mode 100644 index 0000000..2d78a0e --- /dev/null +++ b/gallery/style.css @@ -0,0 +1,51 @@ +/**** Isotope Filtering ****/ + +.isotope-item { + z-index: 2; +} + +.isotope-hidden.isotope-item { + pointer-events: none; + z-index: 1; +} + +/**** Isotope CSS3 transitions ****/ + +.isotope, +.isotope .isotope-item { + -webkit-transition-duration: 0.3s; + -moz-transition-duration: 0.3s; + -ms-transition-duration: 0.3s; + -o-transition-duration: 0.3s; + transition-duration: 0.3s; +} + + +.isotope { + -webkit-transition-property: height, width; + -moz-transition-property: height, width; + -ms-transition-property: height, width; + -o-transition-property: height, width; + transition-property: height, width; +} + +.isotope .isotope-item { + -webkit-transition-property: -webkit-transform, opacity; + -moz-transition-property: -moz-transform, opacity; + -ms-transition-property: -ms-transform, opacity; + -o-transition-property: -o-transform, opacity; + transition-property: transform, opacity; +} + +/**** disabling Isotope CSS3 transitions ****/ + +.isotope.no-transition, +.isotope.no-transition .isotope-item, +.isotope .isotope-item.no-transition { + -webkit-transition-duration: 0s; + -moz-transition-duration: 0s; + -ms-transition-duration: 0s; + -o-transition-duration: 0s; + transition-duration: 0s; +} + |
