틀:아침의 나라/styles.css: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
 
(같은 사용자의 중간 판 6개는 보이지 않습니다)
1번째 줄: 1번째 줄:
.BG1  {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-repeat: repeat-y;
  display: inherit;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index:-3;
-webkit-user-select: none;
-moz-user-select: none;
  user-select: none;
}
.main-window {
.main-window {
position: fixed;
position: fixed;
10번째 줄: 24번째 줄:
display: table;
display: table;
animation-name: window-fade-out;
animation-name: window-fade-out;
animation-delay: .5s;
animation-delay: 1s;
animation-duration: 4s;
animation-duration: 3s;
animation-iteration-count: 1;
animation-iteration-count: 1;
animation-fill-mode: forwards;
animation-fill-mode: forwards;
27번째 줄: 41번째 줄:
margin: -150px 0 0 -150px;
margin: -150px 0 0 -150px;
}
}
.LOM-LDbar {
.LDbar {
  animation: LOM-LDbar;
  animation: LDbar;
  animation-iteration-count: 1;
  animation-iteration-count: 1.5;
  animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  animation-timing-function: ease;
  background-image:linear-gradient(to right, white 0.5%, transparent 0.5%);
  background-image:linear-gradient(to right, white 0.5%, transparent 0.5%);
  box-shadow:0px 0px 5px 1px rgba(0,0,0,0.5);
  box-shadow:0px 0px 5px 1px rgba(0,0,0,0.5);
}
@keyframes IMLO-LDbar {
  0% {background-image:linear-gradient(to right, white 0.5%, transparent 0.5%);}
  10% {background-image:linear-gradient(to right, white 1%, transparent 1%);}
  20% {background-image:linear-gradient(to right, white 2%, transparent 2%);}
  30% {background-image:linear-gradient(to right, white 25%, transparent 25%);}
  40% {background-image:linear-gradient(to right, white 55%, transparent 55%);}
  50% {background-image:linear-gradient(to right, white 60%, transparent 60%);}
  60% {background-image:linear-gradient(to right, white 77%, transparent 77%);}
  70% {background-image:linear-gradient(to right, white 97%, transparent 97%);}
  80% {background-image:linear-gradient(to right, white 98%, transparent 98%);}
  90% {background-image:linear-gradient(to right, white 99%, transparent 99%);}
  100% {background-image:linear-gradient(to right, white 100%, transparent 100%);}
}
}
@keyframes window-fade-out {
@keyframes window-fade-out {

2024년 2월 17일 (토) 11:00 기준 최신판

.BG1  {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-repeat: repeat-y;
  display: inherit;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index:-3;
 -webkit-user-select: none;
 -moz-user-select: none;
  user-select: none;
}
.main-window {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background: #8a001b;
	background: rgba(138, 0, 27, 1);
	display: table;
	animation-name: window-fade-out;
	animation-delay: 1s;
	animation-duration: 3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
.main-window-text {
	position: absolute;
	width: 300px;
	height: 300px;
}
.main-window-textbox {
	text-align: center;
	position: relative;
	top: 50%;
	left: 50%;
	margin: -150px 0 0 -150px;
}
.LDbar {
 animation: LDbar;
 animation-iteration-count: 1.5;
 animation-fill-mode: forwards;
 animation-timing-function: ease;
 background-image:linear-gradient(to right, white 0.5%, transparent 0.5%);
 box-shadow:0px 0px 5px 1px rgba(0,0,0,0.5);
}
@keyframes window-fade-out {
	0% {
		opacity: 1;
		top: 0;
		right: 0;
	}
	25% {
		opacity: 0;
		top: 0;
		right: 0;
	}
	100% {
		opacity: 0;
		top: 999999999px;
		right: 999999999px;
	}
}