github.com/fanux/shipyard@v0.0.0-20161009071005-6515ce223235/controller/static/semantic/src/themes/default/modules/dimmer.variables (about)

     1  /*******************************
     2              Dimmer
     3  *******************************/
     4  
     5  @dimmablePosition: relative;
     6  @dimmerPosition: absolute;
     7  
     8  @background: rgba(0, 0, 0 , 0.85);
     9  @lineHeight: 1;
    10  @perspective: 2000px;
    11  
    12  @duration: 0.5s;
    13  @transition:
    14    background-color @duration linear
    15  ;
    16  @zIndex: 1000;
    17  @textAlign: center;
    18  @verticalAlign: middle;
    19  @textColor: @white;
    20  @overflow: hidden;
    21  
    22  @elementStartFilter: ~"blur(0px) grayscale(0)";
    23  @elementEndFilter: ~"blur(15px) grayscale(0.7)";
    24  @elementTransition: 1.5s all ease;
    25  
    26  /* Hidden (Default) */
    27  @hiddenOpacity: 0;
    28  
    29  /* Content */
    30  @contentDisplay: table;
    31  @contentChildDisplay: table-cell;
    32  
    33  /* Visible */
    34  @visibleOpacity: 1;
    35  
    36  /*-------------------
    37          Types
    38  --------------------*/
    39  
    40  /* Page Dimmer*/
    41  @transformStyle: '';
    42  @pageDimmerPosition: fixed;
    43  
    44  
    45  /*-------------------
    46        Variations
    47  --------------------*/
    48  
    49  /* Inverted */
    50  @invertedBackground: rgba(255, 255, 255, 0.85);
    51  @invertedTextColor: @textColor;
    52  
    53  /* Simple */
    54  @simpleZIndex: 1;
    55  @simpleStartBackground: rgba(0, 0, 0, 0);
    56  @simpleEndBackground: @background;
    57  @simpleInvertedStartBackground: rgba(255, 255, 255, 0);
    58  @simpleInvertedEndBackground: @invertedBackground;