templates/AppTemplates/valide/galerieContent/element.css line 1

Open in your IDE?
  1. .full {
  2.   position: fixed;
  3.   left: 0;
  4.   top: 0;
  5.   width: 100%;
  6.   height: 100%;
  7.   z-index: 1;
  8. }
  9. .full .content {
  10.   background-color: rgba(0,0,0,0.75) !important;
  11.   height: 100%;
  12.   width: 100%;
  13.   display: grid;
  14. }
  15. .full .content img {
  16.   left: 50%;
  17.   transform: translate3d(0, 0, 0);
  18.   animation: zoomin 1s ease;
  19.   max-width: 100%;
  20.   max-height: 100%;
  21.   margin: auto;
  22. }
  23. .byebye {
  24.   opacity: 0;
  25. }
  26. .byebye:hover {
  27.   transform: scale(0.2) !important;
  28.   filter:none!important;
  29. }
  30. .gallery {
  31.   display: grid;
  32.   grid-column-gap: 8px;
  33.   grid-row-gap: 8px;
  34.   grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  35.   grid-auto-rows: 8px;
  36. }
  37. .gallery img {
  38.   max-width: 90%;
  39.   border-radius: 8px;
  40.   box-shadow: 0 0 16px #333;
  41.   filter:contrast(0.5);
  42.   transition: all 1.5s ease;
  43. }
  44. .gallery img:hover {
  45.   box-shadow: 0 0 32px #333;
  46.   transform:scale(1.1);
  47.   filter:none!important;
  48.   transition:0.15s!important;
  49. }
  50. .gallery img 
  51. .gallery .content {
  52.   padding: 4px;
  53. }
  54. .gallery .gallery-item {
  55.   transition: grid-row-start 300ms linear;
  56.   transition: transform 300ms ease;
  57.   transition: all 0.5s ease;
  58.   cursor: pointer;
  59. }
  60. .gallery .gallery-item:hover {
  61.   transform: scale(1.025);
  62.   filter:none!important;
  63. }
  64. .full .content .lozad {
  65.   filter:unset!important;
  66.   max-width: 70%!important;
  67.   height:auto!important;
  68. }
  69. @media (max-width: 600px) {
  70.   .gallery {
  71.     grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  72.   }
  73. }
  74. @media (max-width: 400px) {
  75.   .gallery {
  76.     grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  77.   }
  78. }
  79. @-moz-keyframes zoomin {
  80.   0% {
  81.     max-width: 50%;
  82.     transform: rotate(-30deg);
  83.     filter: blur(4px);
  84.   }
  85.   30% {
  86.     filter: blur(4px);
  87.     transform: rotate(-80deg);
  88.   }
  89.   70% {
  90.     max-width: 50%;
  91.     transform: rotate(45deg);
  92.   }
  93.   100% {
  94.     max-width: 100%;
  95.     transform: rotate(0deg);
  96.   }
  97. }
  98. @-webkit-keyframes zoomin {
  99.   0% {
  100.     max-width: 50%;
  101.     transform: rotate(-30deg);
  102.     filter: blur(4px);
  103.   }
  104.   30% {
  105.     filter: blur(4px);
  106.     transform: rotate(-80deg);
  107.   }
  108.   70% {
  109.     max-width: 50%;
  110.     transform: rotate(45deg);
  111.   }
  112.   100% {
  113.     max-width: 100%;
  114.     transform: rotate(0deg);
  115.   }
  116. }
  117. @-o-keyframes zoomin {
  118.   0% {
  119.     max-width: 50%;
  120.     transform: rotate(-30deg);
  121.     filter: blur(4px);
  122.   }
  123.   30% {
  124.     filter: blur(4px);
  125.     transform: rotate(-80deg);
  126.   }
  127.   70% {
  128.     max-width: 50%;
  129.     transform: rotate(45deg);
  130.   }
  131.   100% {
  132.     max-width: 100%;
  133.     transform: rotate(0deg);
  134.   }
  135. }
  136. @keyframes zoomin {
  137.   0% {
  138.     max-width: 50%;
  139.     transform: rotate(-30deg);
  140.     filter: blur(4px);
  141.   }
  142.   30% {
  143.     filter: blur(4px);
  144.     transform: rotate(-80deg);
  145.   }
  146.   70% {
  147.     max-width: 50%;
  148.     transform: rotate(45deg);
  149.   }
  150.   100% {
  151.     max-width: 80%;
  152.     transform: rotate(0deg);
  153.   }
  154. }
  155. .svs_item {
  156.   height:10vh!important;
  157.   width:50%!important;
  158. }
  159. .svs_security {
  160. width:100%;
  161. height:100%;
  162. background-color:red;
  163. color:white;
  164. }