User:Pax/secret.css: Difference between revisions

From From Dusk till Jawn
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
.container {
.container {
  position: relative;
  display: inline-block;
  border-radius: 2em 2em 2em 2em;
}
.container2 {
   position: relative;
   position: relative;
   display: inline-block;  
   display: inline-block;  
Line 22: Line 28:
   width: 100%;
   width: 100%;
   opacity: 1;
   opacity: 1;
  transition: .5s ease;
  background-color: #140E0A;
}
.overlay2 {
  position: absolute;
  border-radius: 2em 2em 2em 2em;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
   transition: .5s ease;
   transition: .5s ease;
   background-color: #140E0A;
   background-color: #140E0A;
Line 28: Line 48:
.container:hover .overlay {
.container:hover .overlay {
   opacity: 0;
   opacity: 0;
  border-radius:2em 2em 2em 2em;
}
.container2:hover .overlay {
  opacity: 1;
   border-radius:2em 2em 2em 2em;
   border-radius:2em 2em 2em 2em;
}
}

Revision as of 09:11, 18 January 2021

.container {
  position: relative;
  display: inline-block; 
  border-radius: 2em 2em 2em 2em;
}

.container2 {
  position: relative;
  display: inline-block; 
  border-radius: 2em 2em 2em 2em;
}

.image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2em 2em 2em 2em;
}

.overlay {
  position: absolute;
  border-radius: 2em 2em 2em 2em;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: .5s ease;
  background-color: #140E0A;
}

.overlay2 {
  position: absolute;
  border-radius: 2em 2em 2em 2em;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #140E0A;
}

.container:hover .overlay {
  opacity: 0;
  border-radius:2em 2em 2em 2em;
}

.container2:hover .overlay {
  opacity: 1;
  border-radius:2em 2em 2em 2em;
}

.text {
  color: white;
  font-size: 12pt;
  position: absolute;
  font-family: Josefin Sans;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}