GITLAB

Cristian Garcia / DemoParqueadero

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • demoparqueadero
  • www
  • lib
  • ionic
  • scss
  • _backdrop.scss
  • 91a416652   primero commit Browse Code ยป
    Cristian Garcia Escobar
    2014-09-24 17:42:00 -0500  
_backdrop.scss 314 Bytes
edit raw blame history permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: $z-index-backdrop;

  width: 100%;
  height: 100%;

  background-color: rgba(0,0,0,0.4);

  visibility: hidden;
  opacity: 0;

  &.visible {
    visibility: visible;
  }
  &.active {
    opacity: 1;
  }

  @include transition(0.1s opacity linear);
}