mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
32 lines
1007 B
SCSS
32 lines
1007 B
SCSS
$sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
|
$lightSansFontFamily: "Helvetica Neue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
|
$serifFontFamily: Georgia, "Times New Roman", Times, serif !default;
|
|
$monoFontFamily: Monaco, Menlo, Consolas, "Courier New", monospace !default;
|
|
|
|
$baseFontSize: 14px !default;
|
|
$baseFontFamily: $sansFontFamily;
|
|
|
|
$fontSizeLarge: ceil($baseFontSize * 1.25);
|
|
|
|
$baseLineHeight: 1.428571429; // 20/14
|
|
$baseLineHeightComputed: floor($baseFontSize * $baseLineHeight); // ~20px
|
|
|
|
// Content stuff
|
|
$contentPadding: 10px;
|
|
|
|
// Bar stuff
|
|
$barHeight: 44px !default;
|
|
$barLineHeight: 44px !default;
|
|
$barTitleFontSize: $fontSizeLarge;
|
|
$barTitleLineHeightComputed: 26px;//$barHeight - 2;
|
|
$barPaddingVertical: (($barHeight - $baseLineHeightComputed) / 2);
|
|
$barPaddingPortrait: 8px;
|
|
$barPaddingLandscape : 5px;
|
|
|
|
|
|
|
|
// Lists
|
|
$listItemBorder: 1px solid #ddd;
|
|
|
|
// Panels
|
|
$panelViewWidth: 17em; |