2015-03-13 17:34:29 +00:00
|
|
|
//
|
|
|
|
// Typography
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
//light
|
|
|
|
.rls-l{
|
|
|
|
font-family: $font-family-lato;
|
|
|
|
font-weight: $font-weight-lato-xl;
|
|
|
|
}
|
|
|
|
|
|
|
|
//semibold
|
|
|
|
.rls-sb{
|
|
|
|
font-family: $font-family-lato;
|
|
|
|
font-weight: $font-weight-lato-sb;
|
|
|
|
}
|
|
|
|
|
|
|
|
//extrabold
|
|
|
|
.rls-xb{
|
|
|
|
font-family: $font-family-lato;
|
|
|
|
font-weight: $font-weight-lato-xb;
|
|
|
|
}
|
|
|
|
|
|
|
|
.os{
|
|
|
|
font-family: $font-family-open-sans;
|
|
|
|
font-weight: $font-weight-open;
|
|
|
|
}
|
2015-11-10 04:58:06 +00:00
|
|
|
|
|
|
|
@mixin lato-light() {
|
|
|
|
font-family: $font-family-lato;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin open-light() {
|
|
|
|
font-family: $font-family-open-sans;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin open() {
|
|
|
|
font-family: $font-family-open-sans;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin open-bold() {
|
|
|
|
font-family: $font-family-open-sans;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|