2016-08-29 17:58:59 +00:00
|
|
|
/* Fonts */
|
|
|
|
@font-size: 13px;
|
2017-05-24 16:25:22 +00:00
|
|
|
@font-size-xs: round(@font-size * 0.8);
|
|
|
|
@font-size-sm: round(@font-size * 0.9);
|
|
|
|
@font-size-md: round(@font-size * 1.0);
|
|
|
|
@font-size-lg: round(@font-size * 1.2);
|
|
|
|
@font-size-xl: round(@font-size * 1.35);
|
|
|
|
@font-size-xxl: round(@font-size * 1.5);
|
|
|
|
@font-size-xxxl: round(@font-size * 1.7);
|
|
|
|
|
|
|
|
/* Padding */
|
|
|
|
@padding-md: round(@font-size * 1.2);
|
|
|
|
@padding-sm: round(@font-size * 0.6);
|
|
|
|
@padding-xs: round(@font-size * 0.4);
|
|
|
|
@padding-xxs: round(@font-size * 0.2);
|
|
|
|
@padding-lg: round(@font-size * 2.5);
|
|
|
|
@padding-xl: round(@font-size * 5);
|
|
|
|
|
2016-08-29 17:58:59 +00:00
|
|
|
|
|
|
|
/* Wrapper */
|
2017-05-24 16:25:22 +00:00
|
|
|
@line-height-md: round(@font-size * 3.6);
|
|
|
|
@line-height-sm: round(@line-height-md * 0.8);
|
|
|
|
@line-height-xs: round(@line-height-sm * 0.85);
|
|
|
|
@line-height-xxs: round(@line-height-xs * 0.85);
|
2016-08-29 17:58:59 +00:00
|
|
|
|
2017-04-21 04:30:52 +00:00
|
|
|
/* Nav */
|
|
|
|
@height-nav: @line-height-md;
|
2016-08-29 17:58:59 +00:00
|
|
|
|
2016-09-09 00:32:36 +00:00
|
|
|
/* Scrollbars */
|
2017-05-24 16:25:22 +00:00
|
|
|
@scrollbar-width: round(@font-size * 0.75);
|
2016-09-09 00:32:36 +00:00
|
|
|
|
2016-08-29 17:58:59 +00:00
|
|
|
/* Borders */
|
2017-05-24 16:25:22 +00:00
|
|
|
@radius-sm: round(@font-size * 0.2);
|
|
|
|
@radius-md: round(@font-size * 0.3);
|
2016-08-29 17:58:59 +00:00
|
|
|
|
|
|
|
/* Dropdowns */
|
2017-05-24 16:25:22 +00:00
|
|
|
@dropdown-min-width: round(@font-size * 12);
|
2016-08-29 17:58:59 +00:00
|
|
|
|
|
|
|
/* Modals */
|
2017-05-24 16:25:22 +00:00
|
|
|
@modal-width: round(@font-size * 50);
|
|
|
|
@modal-width-wide: round(@font-size * 70);
|
2016-08-29 17:58:59 +00:00
|
|
|
|
|
|
|
/* Other */
|
2017-05-24 16:25:22 +00:00
|
|
|
@drag-width: round(@font-size * 0.5);
|
2016-08-29 17:58:59 +00:00
|
|
|
|
|
|
|
/* Breakpoints */
|
|
|
|
@breakpoint-lg: 1100px;
|
|
|
|
@breakpoint-md: 880px;
|
|
|
|
@breakpoint-sm: 660px;
|
|
|
|
|
|
|
|
.txt-xs {
|
|
|
|
font-size: @font-size-xs !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.txt-sm {
|
|
|
|
font-size: @font-size-sm !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.txt-md {
|
|
|
|
font-size: @font-size-md !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.txt-lg {
|
|
|
|
font-size: @font-size-lg !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.txt-xl {
|
|
|
|
font-size: @font-size-xl !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.txt-xxl {
|
|
|
|
font-size: @font-size-xxl !important;
|
|
|
|
}
|