github.com/jmbataller/terraform@v0.6.8-0.20151125192640-b7a12e3a580c/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: 38px; 8 $project-logo-height: 40px; 9 $project-logo-pad-left: 8px; 10 11 // Mixins 12 @mixin project-a-style{ 13 color: $white; 14 font-weight: 400; 15 opacity: .75; 16 -webkit-font-smoothing: antialiased; 17 18 &:hover{ 19 color: $white; 20 opacity: 1; 21 } 22 } 23 24 @mixin project-footer-a-style{ 25 color: $black; 26 font-weight: 400; 27 28 &:hover{ 29 color: $purple; 30 31 svg path{ 32 fill: $purple; 33 } 34 } 35 } 36 37 @mixin project-footer-a-subpage-style{ 38 color: $white; 39 font-weight: 300; 40 41 svg path{ 42 fill: $white; 43 } 44 45 &:hover{ 46 color: $purple; 47 48 svg path{ 49 fill: $purple; 50 } 51 } 52 } 53 54 @mixin project-svg-external-links-style{ 55 svg path{ 56 fill: $black; 57 } 58 59 &:hover{ 60 svg path{ 61 fill: $blue; 62 } 63 } 64 } 65 66 @mixin project-by-hashicorp-style{ 67 &:hover{ 68 line{ 69 stroke: $blue; 70 } 71 } 72 }