github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/website/source/assets/stylesheets/_logos.scss (about)

     1  svg.logo {
     2    &.color {
     3      opacity: 1.0;
     4  
     5      path.text {
     6        fill: $black;
     7        opacity: 1.0;
     8      }
     9  
    10      path.rect-light {
    11        fill: $terraform-purple;
    12        opacity: 1.0;
    13      }
    14  
    15      path.rect-dark {
    16        fill: $terraform-purple-dark;
    17        opacity: 1.0;
    18      }
    19    }
    20  
    21    // The default logo class is the colored version
    22    @extend .color;
    23  
    24    &.white {
    25      opacity: 1.0;
    26  
    27      path.text {
    28        fill: $white;
    29      }
    30  
    31      path.rect-light {
    32        fill: $white;
    33        opacity: 1.0;
    34      }
    35  
    36      path.rect-dark {
    37        fill: $white;
    38        opacity: 0.7;
    39      }
    40    }
    41  }