Inline the Roboto fonts, and don't download it from Google fonts (reducing an extra cdn to unblock) (#415)

This commit is contained in:
Sam El-Husseini
2017-06-13 17:47:36 -07:00
committed by GitHub
parent ecc9c24dc9
commit 024d4a131c
6 changed files with 330 additions and 2 deletions

View File

@ -2,9 +2,10 @@
User Global Variables
*******************************/
@importGoogleFonts: true;
@importGoogleFonts: false;
@fontName : 'Roboto';
@headerFont : Roboto,"Arial Narrow","Helvetica Neue",Helvetica,Arial,sans-serif;
@pageFont : Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
@emSize : 14px;
@fontSize : 13px;

View File

@ -12,6 +12,14 @@
Add your custom CSS here
*******************************/
/* Roboto font */
@RobotoFont: data-uri("../docs/static/fonts/Roboto_400_normal.woff");
@font-face {
font-family: 'Roboto';
src: @RobotoFont format("woff");
}
.ui.button.download-button {
&:extend(.ui.purple.button all);
}