List view and some structure vars

This commit is contained in:
Max Lynch
2013-08-23 15:57:32 -05:00
parent 023bb73880
commit 246f33e568
9 changed files with 280 additions and 8 deletions

View File

@@ -0,0 +1,21 @@
$sansFontFamily: "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
$barHeight: 50px !default;
$barLineHeight: 50px !default;
$barTitleFontSize: $fontSizeLarge;
$barTitleLineHeightComputed: $baseLineHeightComputed;
$barPaddingVertical: (($barHeight - $baseLineHeightComputed) / 2);
// Lists
$listItemBorder: 1px solid #ddd;