github.com/rahart/packer@v0.12.2-0.20161229105310-282bb6ad370f/website/source/assets/stylesheets/hashicorp-shared/_project-utility.scss (about)

     1  //
     2  // Mixins Specific to project
     3  //  - make edits to mixins here
     4  // --------------------------------------------------
     5  
     6  // Variables
     7  $project-logo-width: 24px;
     8  $project-logo-height: 34px;
     9  $project-logo-pad-left: 8px;
    10  
    11  // Mixins
    12  @mixin project-a-style{
    13    color: $green;
    14    font-weight: 400;
    15    letter-spacing: 0;
    16  
    17    &:hover{
    18      color: $white;
    19    }
    20  }
    21  
    22  @mixin project-footer-a-style{
    23    color: $black;
    24    font-weight: 400;
    25  
    26    &:hover{
    27      color: $green;
    28  
    29      svg path{
    30        fill: $green;
    31      }
    32    }
    33  }
    34  
    35  @mixin project-footer-a-subpage-style{
    36    color: $white;
    37    font-weight: 400;
    38  
    39    svg path{
    40      fill: $white;
    41    }
    42  
    43    &:hover{
    44      color: $green;
    45  
    46      svg path{
    47        fill: $green;
    48      }
    49    }
    50  }
    51  
    52  @mixin project-svg-external-links-style{
    53    svg path{
    54      fill: $green;
    55    }
    56  
    57    &:hover{
    58      svg path{
    59        fill: $green;
    60      }
    61    }
    62  }
    63  
    64  @mixin project-by-hashicorp-style{
    65    &:hover{
    66      line{
    67        stroke: $green;
    68      }
    69    }
    70  }