bigbluebutton-Github/bigbluebutton-html5/imports/ui/stylesheets/variables/typography.scss

31 lines
919 B
SCSS
Raw Normal View History

2016-05-03 06:42:54 +08:00
$font-family-sans-serif: 'Source Sans Pro', Helvetica, Arial, sans-serif !default;
$font-family-serif: Georgia, "Times New Roman", Times, serif !default;
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
$font-family-base: $font-family-sans-serif !default;
$font-size-base: 1rem !default;
$font-size-large: 1.25rem !default;
$font-size-small: .875rem !default;
2016-05-03 06:42:54 +08:00
$line-height-base: 1.428571429 !default; // 20/14
$line-height-computed: floor(($font-size-base * $line-height-base)) !default;
$headings-font-family: inherit !default;
$headings-font-weight: 500 !default;
$headings-line-height: 1.1 !default;
$headings-color: inherit !default;
2016-06-02 00:33:19 +08:00
/*
* Placeholders
* ===============
*/
%text-elipsis {
min-width: 0;
display: inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}