insomnia/app/css/constants/dimensions.scss

36 lines
518 B
SCSS
Raw Normal View History

2016-03-16 05:49:42 +00:00
$default-padding: 15px;
/* Fonts */
$font-size: 12px;
$font-size-sm: $font-size * 0.8;
2016-03-16 20:02:47 +00:00
$font-size-md: $font-size;
2016-03-16 05:49:42 +00:00
$font-size-lg: $font-size * 1.3;
$font-size-xl: $font-size * 1.5;
$font-size-xxl: $font-size * 1.8;
.txt-sm {
2016-03-16 20:02:47 +00:00
font-size: $font-size-sm;
}
.txt-md {
font-size: $font-size-md;
2016-03-16 05:49:42 +00:00
}
.txt-lg {
2016-03-16 20:02:47 +00:00
font-size: $font-size-lg;
}
.txt-xl {
font-size: $font-size-xl;
2016-03-16 05:49:42 +00:00
}
/* Wrapper */
$header-height: 50px;
/* Sidebar */
2016-03-16 20:02:47 +00:00
$sidebar-width: 300px;
2016-03-16 05:49:42 +00:00
$sidebar-item-height: 45px;
2016-03-16 20:02:47 +00:00
/* Elements */
$form-height: 50px;