Guest User

Untitled

a guest
May 23rd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. /* -- Image gallery zoom and title styles -- */
  2. .mfp-with-zoom .mfp-container,
  3. .mfp-with-zoom.mfp-bg {
  4. opacity: 0;
  5. -webkit-backface-visibility: hidden;
  6. /* ideally, transition speed should match zoom duration */
  7. -webkit-transition: all 0.3s ease-out;
  8. -moz-transition: all 0.3s ease-out;
  9. -o-transition: all 0.3s ease-out;
  10. transition: all 0.3s ease-out;
  11. }
  12.  
  13. .mfp-with-zoom.mfp-ready .mfp-container {
  14. opacity: 1;
  15. }
  16. .mfp-with-zoom.mfp-ready.mfp-bg {
  17. opacity: 0.8;
  18. }
  19.  
  20. .mfp-with-zoom.mfp-removing .mfp-container,
  21. .mfp-with-zoom.mfp-removing.mfp-bg {
  22. opacity: 0;
  23. }
  24.  
  25. .mfp-title {
  26. text-align: center;
  27. line-height: 18px;
  28. color: #fff;
  29. font-weight:600;
  30. word-wrap: break-word;
  31. text-transform:uppercase
  32. }
  33. /* - end - */
Add Comment
Please, Sign In to add comment