편집 요약 없음 |
편집 요약 없음 |
||
1번째 줄: | 1번째 줄: | ||
.table { | .table { | ||
margin-left: auto; | |||
margin-right: auto; | |||
margin-top: 10px; | margin-top: 10px; | ||
height: | height: 60px; | ||
width: 80%; | width: 80%; | ||
border: 2px solid #FB0055; | border: 2px solid #FB0055; | ||
7번째 줄: | 9번째 줄: | ||
font-size: 24pt; | font-size: 24pt; | ||
font-weight: bold; | font-weight: bold; | ||
color: # | color: #FB0055; | ||
letter-spacing: -0.5px; | letter-spacing: -0.5px; | ||
text-align: center; | text-align: center; |
2023년 4월 23일 (일) 17:34 판
.table {
margin-left: auto;
margin-right: auto;
margin-top: 10px;
height: 60px;
width: 80%;
border: 2px solid #FB0055;
overflow: hidden;
font-size: 24pt;
font-weight: bold;
color: #FB0055;
letter-spacing: -0.5px;
text-align: center;
}
.text-animation {
margin-top: 35px;
height: auto;
animation-name: text-animation;
animation-duration: 1s;
animation-iteration-count: 1;
}
@keyframes text-animation {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0px);
}
}