github.com/mithrandie/csvq@v1.18.1/docs/_sass/components/_materialbox.scss (about)

     1  .materialboxed {
     2    &:hover {
     3      &:not(.active) {
     4        opacity: .8;
     5      }
     6    }
     7  
     8    display: block;
     9    cursor: zoom-in;
    10    position: relative;
    11    transition: opacity .4s;
    12    -webkit-backface-visibility: hidden;
    13  
    14    &.active {
    15      cursor: zoom-out;
    16    }
    17  }
    18  
    19  #materialbox-overlay {
    20    position:fixed;
    21    top: 0;
    22    right: 0;
    23    bottom: 0;
    24    left: 0;
    25    background-color: #292929;
    26    z-index: 1000;
    27    will-change: opacity;
    28  }
    29  
    30  .materialbox-caption {
    31    position: fixed;
    32    display: none;
    33    color: #fff;
    34    line-height: 50px;
    35    bottom: 0;
    36    left: 0;
    37    width: 100%;
    38    text-align: center;
    39    padding: 0% 15%;
    40    height: 50px;
    41    z-index: 1000;
    42    -webkit-font-smoothing: antialiased;
    43  }