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

편집 요약 없음
편집 요약 없음
 
(다른 사용자 한 명의 중간 판 16개는 보이지 않습니다)
24번째 줄: 24번째 줄:
   height: 280px;
   height: 280px;
   border-radius: 5px;
   border-radius: 5px;
   transform: scale(0.90);  
   transform: scale(0.95);  
   transition: .2s ease-out;
   transition: .2s ease-out;
}
}
/* 돌아가라 1 */
/* 돌아가라 1 */
.rotate{
.rotate{
transition: transform 2s;
transition: transform 1.5s;
}
}
.rotate:active{
.rotate:active{
transform: rotate(70deg);
transform: rotate(90deg);
}
}


104번째 줄: 104번째 줄:
   }
   }
}
}
/* 무언가 */
.rainbow {
    width: 150px;
    height: 150px;
    animation: rainbow-ani 5s infinite steps(6);
}
    @keyframes box {
       
        from {background-position:0 0}
        to  {background-position:-906px 0}
    }

2023년 7월 10일 (월) 15:56 기준 최신판

/* 사용자 문서 메뉴 */
.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.95); 
  transition: .2s ease-out;
}
/* 돌아가라 1 */
.rotate{
	transition: transform 1.5s;
}
.rotate:active{
	transform: rotate(90deg);
}

/* 앨범 겨울봄 */
.album {
  animation-duration: 40s;
  animation-name: slidein2;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: 4;
}
@keyframes slidein2 {
  from {
    transform: rotate(0deg);
  }

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

/* 앨범재생 겨울봄 */
.albumcircle {
  animation-duration: 242s;
  animation-name: slidein;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes slidein {
  from {
    margin-left: 0px;
  }

  to {
    margin-left: 780px;
  }
}

/* 앨범 리와인드 */
.album2 {
  animation-duration: 30s;
  animation-name: slidein4;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: 9;
}
@keyframes slidein4 {
  from {
    transform: rotate(0deg);
  }

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

/* 앨범재생 리와인드 */
.albumcircle2 {
  animation-duration: 271s;
  animation-name: slidein3;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes slidein3 {
  from {
    margin-left: 0px;
  }

  to {
    margin-left: 780px;
  }
}