Files
nairobi/app/assets/stylesheets/pdf_fonts.scss.erb
Alessandro Cuoghi 5fd9b2b633 Change quote and fix font
- Created new quotation marks without svg - Greater flexibility

- Fix font Lato in PDF - change font family in pdf_font
2019-02-02 19:18:26 +01:00

66 lines
1.6 KiB
Plaintext

// Fonts
//
// 01. Source Sans Pro (https://www.google.com/fonts/specimen/Source+Sans+Pro)
// 02. Lato (https://www.google.com/fonts/specimen/Lato)
//
// 01. Source Sans Pro
// - - - - - - - - - - - - - - - - - - - - - - - - -
@font-face {
font-family: 'Source Sans Pro PDF';
font-style: normal;
font-weight: 300;
src: url("<%= ApplicationHelper.asset_data_base64('sourcesanspro-light-webfont.ttf') %>");
}
@font-face {
font-family: 'Source Sans Pro PDF';
font-style: normal;
font-weight: 400;
src: url("<%= ApplicationHelper.asset_data_base64('sourcesanspro-regular-webfont.ttf') %>");
}
@font-face {
font-family: 'Source Sans Pro PDF';
font-style: italic;
font-weight: 400;
src: url("<%= ApplicationHelper.asset_data_base64('sourcesanspro-italic-webfont.ttf') %>");
}
@font-face {
font-family: 'Source Sans Pro PDF';
font-style: normal;
font-weight: 700;
src: url("<%= ApplicationHelper.asset_data_base64('sourcesanspro-bold-webfont.ttf') %>");
}
// 02. Lato
// - - - - - - - - - - - - - - - - - - - - - - - - -
@font-face {
font-family: 'Lato PDF';
src: url("<%= ApplicationHelper.asset_data_base64('lato-light.ttf') %>");
font-weight: lighter;
font-style: normal;
}
@font-face {
font-family: 'Lato PDF';
src: url("<%= ApplicationHelper.asset_data_base64('lato-regular.ttf') %>");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Lato PDF';
src: url("<%= ApplicationHelper.asset_data_base64('lato-bold.ttf') %>");
font-weight: bold;
font-style: normal;
}
body, h1, h2, h3 {
font-family: Lato PDF !important;
font-weight: lighter !important;
}