Blame view

bower_components/Materialize/sass/components/_materialbox.scss 662 Bytes
74249687   Luigi Serra   Cross browser con...
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
36
37
38
39
40
41
42
  .materialboxed {
    display: block;
    cursor: zoom-in;
    position: relative;
    @include transition(opacity .4s);
  
    &:hover {
      &:not(.active) {
        opacity: .8;
      }
      will-change: left, top, width, height;
    }
  }
  
  .materialboxed.active {
    cursor: zoom-out;
  }
  
  #materialbox-overlay {
    position:fixed;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    background-color: #292929;
    z-index: 999;
  
    will-change: opacity;
  }
  .materialbox-caption {
    position: fixed;
    display: none;
    color: #fff;
    line-height: 50px;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0% 15%;
    height: 50px;
    z-index: 1000;
    -webkit-font-smoothing: antialiased;
  }