Sha256: 7e5e9cbf7293589548921c309e7d93b7bb0f3fad33c92b00df7613cb906d2042

Contents?: true

Size: 1.93 KB

Versions: 2

Compression:

Stored size: 1.93 KB

Contents

// Sitewide Links

.blue * > a{
  color: $blue-color;
  &:hover{
    color: darken($blue-color, 15%);
    text-decoration: none;
  }  
}
.green * > a{
  color: $green-color;
  &:hover{
    color: darken($green-color, 15%);
    text-decoration: none;
  }  
}
.orange * > a{
  color: $orange-color;
  &:hover{
    color: darken($orange-color, 15%);
    text-decoration: none;
  }  
}
.purple * > a{
  color: $purple-color;
  &:hover{
    color: darken($purple-color, 15%);
    text-decoration: none;
  }  
}
.grey * > a{
  color: darken($grey-color, 10%);
  &:hover{
    color: darken($grey-color, 25%);
    text-decoration: none;
  }  
}

// Explicit Links
a.blue{
  color: $blue-color;
  &:hover{
    color: darken($blue-color, 15%);
    text-decoration: none;
  }  
}
a.green{
  color: $green-color;
  &:hover{
    color: darken($green-color, 15%);
    text-decoration: none;
  }  
}
a.orange{
  color: $orange-color;
  &:hover{
    color: darken($orange-color, 15%);
    text-decoration: none;
  }  
}
a.purple{
  color: $purple-color;
  &:hover{
    color: darken($purple-color, 15%);
    text-decoration: none;
  }  
}
a.grey{
  color: $grey-color;
  &:hover{
    color: darken($grey-color, 15%);
    text-decoration: none;
  }  
}



.btn-primary{
  background:$blue-color;
  background:
  linear-gradient(
    to bottom right,
    rgba(20, 161, 175, .91),
    rgba(20, 161, 175, 1)
  );
  border-color:$blue-color;
  &:hover{
    background-color: darken($blue-color, 15%)!important;
    border-color: darken($blue-color, 15%)!important;
    color:white!important;
    text-decoration: none;
  }  
}

.btn-success{
  background:$green-color;
  background:
  linear-gradient(
    to bottom right,
    rgba(66, 142, 66, .91),
    rgba(66, 142, 66, 1)
  );
  border-color:$green-color;
  &:hover{
    background-color: darken($green-color, 15%)!important;
    border-color: darken($green-color, 15%)!important;
    color:white!important;
    text-decoration: none;
  }  
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
solar-flair-0.1.10 _sass/solar-flair/_links.scss
solar-flair-0.1.7 _sass/solar-flair/_links.scss