Difference between revisions of "Template:Georgia State/sand"

 
(4 intermediate revisions by the same user not shown)
Line 2,220: Line 2,220:
  
 
<!---Mask effects--->
 
<!---Mask effects--->
.colcontainer {
 
    position: relative;
 
    width: 50%;
 
}
 
 
.colimage {
 
  opacity: 1;
 
  display: block;
 
  width: 100%;
 
  height: auto;
 
  transition: .5s ease;
 
  backface-visibility: hidden;
 
}
 
 
.colmiddle {
 
  transition: .5s ease;
 
  opacity: 0;
 
  position: absolute;
 
  top: 50%;
 
  left: 50%;
 
  transform: translate(-50%, -50%);
 
  -ms-transform: translate(-50%, -50%);
 
  text-align: center;
 
}
 
 
.colcontainer:hover .image {
 
  opacity: 0.3;
 
}
 
 
.colcontainer:hover .middle {
 
  opacity: 1;
 
}
 
 
.coltext {
 
  background-color: #4CAF50;
 
  color: white;
 
  font-size: 16px;
 
  padding: 16px 32px;
 
}
 
 
 
.view {
 
.view {
 
   width: 300px;
 
   width: 300px;
Line 2,330: Line 2,290:
 
-ms-transition-delay: 0.3s;
 
-ms-transition-delay: 0.3s;
 
transition-delay: 0.3s;
 
transition-delay: 0.3s;
 +
}
 +
<!--Hoverbox-->
 +
.hvrbox * {
 +
box-sizing: border-box;
 +
}
 +
.hvrbox {
 +
position: relative;
 +
display: inline-block;
 +
overflow: hidden;
 +
max-width: 100%;
 +
height: auto;
 +
}
 +
.hvrbox img {
 +
max-width: 100%;
 +
}
 +
.hvrbox .hvrbox-layer_bottom {
 +
display: block;
 +
}
 +
.hvrbox .hvrbox-layer_top {
 +
opacity: 0;
 +
position: absolute;
 +
top: 0;
 +
left: 0;
 +
right: 0;
 +
bottom: 0;
 +
width: 100%;
 +
height: 100%;
 +
background: rgba(0, 0, 0, 0.6);
 +
color: #fff;
 +
padding: 15px;
 +
-moz-transition: all 0.4s ease-in-out 0s;
 +
-webkit-transition: all 0.4s ease-in-out 0s;
 +
-ms-transition: all 0.4s ease-in-out 0s;
 +
transition: all 0.4s ease-in-out 0s;
 +
}
 +
.hvrbox:hover .hvrbox-layer_top,
 +
.hvrbox.active .hvrbox-layer_top {
 +
opacity: 1;
 +
}
 +
.hvrbox .hvrbox-text {
 +
text-align: center;
 +
font-size: 18px;
 +
display: inline-block;
 +
position: absolute;
 +
top: 50%;
 +
left: 50%;
 +
-moz-transform: translate(-50%, -50%);
 +
-webkit-transform: translate(-50%, -50%);
 +
-ms-transform: translate(-50%, -50%);
 +
transform: translate(-50%, -50%);
 +
}
 +
.hvrbox .hvrbox-text_mobile {
 +
font-size: 15px;
 +
border-top: 1px solid rgb(179, 179, 179); /* for old browsers */
 +
border-top: 1px solid rgba(179, 179, 179, 0.7);
 +
margin-top: 5px;
 +
padding-top: 2px;
 +
display: none;
 +
}
 +
.hvrbox.active .hvrbox-text_mobile {
 +
display: block;
 
}
 
}
  

Latest revision as of 19:22, 17 October 2018