사용자:BANIP/낙서장: 두 판 사이의 차이
잔글 (끊긴 파일 주석처리 테스트) |
편집 요약 없음 |
||
1번째 줄: | 1번째 줄: | ||
{{#css: | |||
.gamebody{ | |||
background:hsl(200, 100%, 90%); | |||
container: gamemain / inline-size; | |||
--color-skyblue: hsl(200, 100%, 80%); | |||
--color-skyblue-light: hsl(200, 100%, 90%); | |||
--color-rose: hsl(330, 100%, 80%); | |||
} | |||
.game{ | |||
height: 100%; | |||
} | |||
.game.lobby, .game.result{ | |||
display:flex; flex-direction:column; justify-content:center; align-items:center; | |||
justify-content: space-around; | |||
} | |||
.game .title{ | |||
-webkit-text-stroke:4px white; | |||
font-size: 18cqw; | |||
font-weight: bold; | |||
} | |||
.game .title .skyblue{ | |||
color: var(--color-skyblue); | |||
} | |||
.game .title .rose{ | |||
color: var(--color-rose); | |||
} | |||
.game .btn{ | |||
font-size: 4cqw; | |||
color: #fff; | |||
font-weight: bold; | |||
border: 4px solid #fff; | |||
padding: 8px 16px; | |||
border-radius: 8px; | |||
background: var(--color-skyblue); | |||
transition: 0.2s all; | |||
cursor: pointer; | |||
} | |||
.game.play .bg{ | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
width: 100%; | |||
height: 100%; | |||
background-color: rgba(0,0,0, 0.5); | |||
background-size: cover; | |||
background-position: center; | |||
display:flex; | |||
justify-content:center; | |||
align-items:center; | |||
} | |||
.game.play{ | |||
display:grid; | |||
grid-template-rows: 30px 1fr; | |||
} | |||
.game .timer{ | |||
text-align:center; | |||
} | |||
.game .btn:hover{ | |||
background: var(--color-skyblue-light); | |||
transform: scale(1.1); | |||
} | |||
.game .btn-wrapper{ | |||
display:flex; flex-direction:row; justify-content:center; align-items:center; gap: 16px; | |||
} | |||
}} | |||
{{플러그인X|/스크립트}} |