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

Материал из МК14 | Space Station 14 Wiki
м (TEST)
м (test)
Строка 31: Строка 31:
           width: 615px;
           width: 615px;
           background-color: red;
           background-color: red;
          animation: shake 0.5s;
         }
         }

Версия от 20:57, 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: 90px;
          height: 90px;
          background-color: #ffb90f;
          transition: width 1s cubic-bezier(0, 0, 1, 1) 50ms;
        }
        
        .block-animation:hover {
          width: 615px;
          background-color: red;
          animation: shake 0.5s;
        }