틀:로시아/styles.css: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
61번째 줄: 61번째 줄:
@keyframes slidein {
@keyframes slidein {
   from {
   from {
     margin-left: 0%;
     margin-left: 100%;
   }
   }


   to {
   to {
     margin-left: 100%;
     margin-left: 800%;
   }
   }
}
}

2023년 5월 23일 (화) 12:31 판

/* 사용자 문서 메뉴 */
.losiacard {
  display: inline-block;
  overflow: hidden;
  width: 190px;
  height: 280px;
  border-radius: 5px;
  transform: scale(0.90); 
  transition: .2s ease-out;
}

.losiacard:hover{
  transition: .2s ease-in;
  transform: scale(0.995); 
  z-index:3;
  margin-left: auto;
  margin-right: auto;
   }
   
.losiacard img {
  display: inline-block;
  overflow: hidden;
  width: 190px;
  height: 280px;
  border-radius: 5px;
  transform: scale(0.90); 
  transition: .2s ease-out;
}
/* 돌아가라 1 */
.rotate{
	transition: transform 2s;
}
.rotate:active{
	transform: rotate(70deg);
}

/* 앨범범 */
.album {
  animation-duration: 40s;
  animation-name: slidein;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes slidein {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(350deg);
  }
}

/* 앨범동그라미미 */
.albumcircle {
  animation-duration: 10s;
  animation-name: slidein;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes slidein {
  from {
    margin-left: 100%;
  }

  to {
    margin-left: 800%;
  }
}