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

편집 요약 없음
편집 요약 없음
 
25번째 줄: 25번째 줄:
animation-name: window-fade-out;
animation-name: window-fade-out;
animation-delay: 1s;
animation-delay: 1s;
animation-duration: 10s;
animation-duration: 3s;
animation-iteration-count: 1;
animation-iteration-count: 1;
animation-fill-mode: forwards;
animation-fill-mode: forwards;
48번째 줄: 48번째 줄:
  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 {
79번째 줄: 65번째 줄:
right: 999999999px;
right: 999999999px;
}
}
}
@media screen and (max-width: 768px) {
.banner {
    background: #00F1BA;
    font-family: "Pretendard JP Variable";
    color: #252525;
    padding: 20px;
    font-size: 9pt;
    text-align: center;
    width: 100%;
    user-select: none;
    }
}
}

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;
	}
}