Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / fireflyReg

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • fireflyReg
  • css
  • newpccss
  • version.css
Find file
BlameHistoryPermalink
  • libai's avatar
    测试 · 8e24e39a
    libai committed a year ago
    8e24e39a
version.css 634 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
.main{
    width: 10rem;
    height: 56.093rem;
    background: url(../../img/updateBg.png) no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    position: relative;
}

.updateBtn{
    width: 7.44rem;
    height: 1.36rem;
    background: url(../../img/updateBtn.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 9.5rem;
    left: 50%;
    margin-left: -3.72rem;
    animation: flash 1.5s linear infinite;
}

@keyframes flash {
    0%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
    0%{
        transform: scale(0.5);
    }
    100%{
        transform: scale(1);
    }
}