Skip to content
Snippets Groups Projects
Select Git revision
  • 482c8cdc94486bff5679e6cf240a1ac7b1d9107a
  • master default
2 results

commands.h

Blame
  • Forked from sce213ta / mysh-1
    Source project has a limited visibility.
    Progress.css 648 B
    .progress-block {
        margin: 2px 0;
        width: 200px;
        border-radius: 5px;
        text-align: center;
        line-height: 1.5;
        font-size: 10px;
        color: white;
        font-weight: bold;
    }
    
    .new-block {
        animation: dropAnimation 0.8s ease forwards; /* 드롭 애니메이션 */
    }
    
    @keyframes dropAnimation {
        0% {
            transform: translateY(-200px); /* 위쪽에서 시작 */
            opacity: 0; /* 투명하게 시작 */
        }
        50% {
            opacity: 0.5; /* 중간에서 반투명 */
        }
        100% {
            transform: translateY(0); /* 원래 위치 */
            opacity: 1; /* 완전히 보임 */
        }
    }