print font
This commit is contained in:
parent
a7a92e7703
commit
34c73a2d47
5 changed files with 24 additions and 0 deletions
|
|
@ -31,10 +31,12 @@ $head_line_3: $text_line_1;
|
|||
$head_line_4: $text_line_1;
|
||||
|
||||
$default_font_family: #{'Trebuchet MS', Helvetica, Arial, sans-serif, sans} !default;
|
||||
$print_font_family: #{'Times New Roman', times};
|
||||
|
||||
$primary_font_family: $default_font_family;
|
||||
$secondary_font_family: #{'Roboto', sans-serif};
|
||||
$third_font_family: #{'Courier New', monospace};
|
||||
$fourth_font_family: $print_font_family;
|
||||
|
||||
$basic_indent: 2em;
|
||||
|
||||
|
|
|
|||
|
|
@ -26,6 +26,13 @@
|
|||
|
||||
|
||||
|
||||
// Fonts
|
||||
// Use a central file outside of hippie for font definitions with @font-face
|
||||
// -----------------------------------------------------------------------------
|
||||
// @import "other/fonts.css";
|
||||
|
||||
|
||||
|
||||
// Global configuration with default values
|
||||
// Adjustments can be made by copying values from _default.scss to _config.scss
|
||||
// Be careful though changes will get lost if hippie gets updated
|
||||
|
|
|
|||
|
|
@ -13,6 +13,12 @@
|
|||
line-height: $text_line_1;
|
||||
}
|
||||
|
||||
%basic_print {
|
||||
font-family: $third_font_family;
|
||||
font-size: $text_size_1;
|
||||
line-height: $text_line_1;
|
||||
}
|
||||
|
||||
%head_all {
|
||||
color: $basic_head_color;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -225,6 +225,11 @@ pre, code, .code_solo {
|
|||
font-size: 1em;
|
||||
line-height: 1.5; }
|
||||
|
||||
.print_body *[class^="din"] p, .print_body *[class^="din"] .p_col_2, .print_body *[class^="din"] .p_col_3, .print_body *[class^="din"] caption {
|
||||
font-family: Courier New, monospace;
|
||||
font-size: 1em;
|
||||
line-height: 1.5; }
|
||||
|
||||
h1, .exp_help_btn .span_solo, .print_body .page_date, .print_body .page_no {
|
||||
font-family: Roboto, sans-serif;
|
||||
font-size: 3.1em;
|
||||
|
|
|
|||
|
|
@ -55,6 +55,10 @@ $din: $a4, $a5, $a6;
|
|||
position: relative;
|
||||
overflow: auto;
|
||||
|
||||
p {
|
||||
@extend %basic_print;
|
||||
}
|
||||
|
||||
.page_head, .page_foot {
|
||||
position: absolute;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue