1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // Google Fonts
- @import url("https://fonts.googleapis.com/css?family=Roboto:400,500,500i,700");
- @font-primary: 'Roboto', sans-serif;
- @brand-primary: #d7142d;
- @brand-secondary: #a9a9a9;
- @brand-white: #fff;
- @brand-grey: @brand-secondary;
- @brand-grey-light: #efefef;
- @brand-dark: #000000;
- @brand-error: #ff8585;
- @brand-success: #69b705;
- @brand-link: @brand-secondary;
- @brand-link-active: @brand-primary;
- @brand-link-text: @brand-dark;
- @brand-link-text-active: @brand-white;
- @brand-text: @brand-dark;
- @brand-text-light: #b1b1b1;
- // Extra small screen / phone
- //** Deprecated `@screen-xs` as of v3.0.1
- @screen-xs: 480px;
- @screen-xxs: 415px;
- //** Deprecated `@screen-xs-min` as of v3.2.0
- @screen-xs-min: @screen-xs;
- //** Deprecated `@screen-phone` as of v3.0.1
- @screen-phone: @screen-xs-min;
- // Small screen / tablet
- //** Deprecated `@screen-sm` as of v3.0.1
- @screen-sm: 768px;
- @screen-sm-min: @screen-sm;
- //** Deprecated `@screen-tablet` as of v3.0.1
- @screen-tablet: @screen-sm-min;
- // Medium screen / desktop
- //** Deprecated `@screen-md` as of v3.0.1
- @screen-md: 992px;
- @screen-md-min: @screen-md;
- //** Deprecated `@screen-desktop` as of v3.0.1
- @screen-desktop: @screen-md-min;
- // Large screen / wide desktop
- //** Deprecated `@screen-lg` as of v3.0.1
- @screen-lg: 1200px;
- @screen-lg-min: @screen-lg;
- //** Deprecated `@screen-lg-desktop` as of v3.0.1
- @screen-lg-desktop: @screen-lg-min;
|