remove all traces of Lato font
This commit is contained in:
parent
4e67740f73
commit
d60265dd79
|
@ -155,11 +155,6 @@ body.layout-intro{
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*> a:hover,
|
|
||||||
> a:focus {
|
|
||||||
font-weight: $font-weight-lato-xb;
|
|
||||||
}*/
|
|
||||||
|
|
||||||
.nav {
|
.nav {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
|
@ -212,8 +207,6 @@ body.layout-intro{
|
||||||
|
|
||||||
p, li, .alert {
|
p, li, .alert {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-family: $font-family-open-sans;
|
|
||||||
font-weight: $font-weight-open;
|
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
margin: 0 0 18px;
|
margin: 0 0 18px;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
|
@ -245,7 +238,6 @@ body.layout-intro{
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
border-bottom: 1px solid #eeeeee;
|
border-bottom: 1px solid #eeeeee;
|
||||||
@include lato-light();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h2, h3, h4{
|
h2, h3, h4{
|
||||||
|
|
|
@ -1,27 +1,3 @@
|
||||||
//
|
//
|
||||||
// Typography
|
// 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;
|
|
||||||
}
|
|
||||||
|
|
|
@ -123,9 +123,6 @@
|
||||||
color:#fff;
|
color:#fff;
|
||||||
visibility:hidden;
|
visibility:hidden;
|
||||||
|
|
||||||
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
|
|
||||||
-webkit-transform:translate3d(0,0,0);
|
-webkit-transform:translate3d(0,0,0);
|
||||||
-moz-transform:translate3d(0,0,0);
|
-moz-transform:translate3d(0,0,0);
|
||||||
-ms-transform:translate3d(0,0,0);
|
-ms-transform:translate3d(0,0,0);
|
||||||
|
|
|
@ -7,11 +7,6 @@
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin lato-light() {
|
|
||||||
font-family: $font-family-lato;
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin skewY($skew) {
|
@mixin skewY($skew) {
|
||||||
-webkit-transform: skewY($skew);
|
-webkit-transform: skewY($skew);
|
||||||
-moz-transform: skewY($skew);
|
-moz-transform: skewY($skew);
|
||||||
|
|
|
@ -44,14 +44,7 @@ $link-hover-color: darken($link-color, 15%);
|
||||||
|
|
||||||
// Typography
|
// Typography
|
||||||
// -------------------------
|
// -------------------------
|
||||||
$font-family-lato: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
||||||
$font-family-open-sans: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
$font-family-open-sans: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
$font-weight-lato-xl: 300;
|
|
||||||
$font-weight-lato-reg: 300;
|
|
||||||
$font-weight-lato-sb: 500;
|
|
||||||
$font-weight-lato-xb: 700;
|
|
||||||
$font-weight-open: $font-weight-lato-reg;
|
|
||||||
|
|
||||||
|
|
||||||
$text-shadow: 1px 1px 1px #000;
|
$text-shadow: 1px 1px 1px #000;
|
||||||
$shadow: $text-shadow;
|
$shadow: $text-shadow;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
@import 'bootstrap-sprockets';
|
@import 'bootstrap-sprockets';
|
||||||
@import 'bootstrap';
|
@import 'bootstrap';
|
||||||
|
|
||||||
@import url("//fonts.googleapis.com/css?family=Lato:300,400,700|Open+Sans:300,400,600");
|
@import url("Open+Sans:300,400,600");
|
||||||
|
|
||||||
// Core variables and mixins
|
// Core variables and mixins
|
||||||
@import '_variables';
|
@import '_variables';
|
||||||
|
|
Loading…
Reference in New Issue