Шаблон:MinisterialInfo/styles.css: различия между версиями

Материал из МК14 | Space Station 14 Wiki
м (TEST)
м (test)
Строка 21: Строка 21:
}
}


.fullscreen_title {
        .block-animation {
  transform: translate(0px, 120%);
          width: 130px;
  opacity: 0;
          height: 130px;
  transition: all 0.8s ease 0s;
          background-color: #2196F3;
}
transition: width 1s cubic-bezier(0, 0, 1, 1) 500ms;
 
        }
.fullscreen_title._active {
       
  transform: translate(0px, 0px);
        .block-animation:hover {
  opacity: 1;
          width: 230px;
}
        }

Версия от 20:42, 2 августа 2024

@keyframes animationOne {
   from {
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}

@keyframes text1 {
   0% {
      color: #000;
      margin-bottom: -40px;
   }

   85% {
      letter-spacing: 8px;
      margin-bottom: -40px;
   }
}

        .block-animation {
          width: 130px;
          height: 130px;
          background-color: #2196F3;
transition: width 1s cubic-bezier(0, 0, 1, 1) 500ms;
        }
        
        .block-animation:hover {
          width: 230px;
        }