• This project
    • Loading...
  • Sign in

fe / YOHOBUYPC · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 2
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • YOHOBUYPC
  • static
  • sass
  • _loading.scss
  • loading
    d94100dc
    by xuqi
    2015-10-29 15:28:14 +0800  
    Browse File »
_loading.scss 477 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
.loading-mask {
    position: absolute;
    background: rgba(0,0,0,.3);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    
    .loading {
        position: absolute;
        width: 100rem / $pxConvertRem;
        height: 40rem / $pxConvertRem;
        background: image-url('loading.gif') no-repeat;
        background-size: 100% 100%;
        top: 50%;
        left: 50%;
        margin-left: -50rem / $pxConvertRem;
        margin-top: -20rem / $pxConvertRem;
    }
}