_animations.less
7 years ago
_base.less
7 years ago
_country-flags.less
5 years ago
_elements.less
1 year ago
_overrides.less
1 year ago
_variables.less
4 years ago
font.less
4 years ago
rtl.less
3 years ago
_variables.less
168 lines
| 1 | //COLORS |
| 2 | @color-text-prime: #354052; |
| 3 | @color-text-second: #7F8FA4; |
| 4 | @color-divider-gray: #E2E6EC; |
| 5 | @color-icon: #616E7C; |
| 6 | @color-url: #7F8FA4; |
| 7 | //@color-highlight: #fbfbfb; |
| 8 | @color-highlight: #f9f9f9; |
| 9 | @color-white: #ffffff; |
| 10 | @color-gray: #D3DDEA; |
| 11 | @color-light-gray: #f2f3f5; |
| 12 | @color-orange: #FFA700; |
| 13 | @color-green: #5FCE19; |
| 14 | @color-blue: #1A84EE; |
| 15 | @color-red: #ff1563; |
| 16 | @color-yellow: #FFD400; |
| 17 | @color-pink: #FF1563; |
| 18 | @color-red-dark: #FF0040; |
| 19 | @color-dark-gray: #A9B2BC; |
| 20 | |
| 21 | //------------------------------- |
| 22 | |
| 23 | //WIDTHS |
| 24 | @page-wrap: 1600px; |
| 25 | |
| 26 | //HEIGHTS |
| 27 | @wrap-min-height: 720px; |
| 28 | |
| 29 | //FONT |
| 30 | @import "font"; |
| 31 | |
| 32 | //font weight |
| 33 | @light: 300; |
| 34 | @regular: 400; |
| 35 | @medium: 500; |
| 36 | @bold: 700; |
| 37 | |
| 38 | //font family |
| 39 | @roboto: 'Roboto Amelia', sans-serif; |
| 40 | |
| 41 | //------------------------------- |
| 42 | |
| 43 | //font size |
| 44 | @huge-fs: 40px; |
| 45 | @big-fs: 30px; |
| 46 | @semi-big-fs: 24px; |
| 47 | @medium-fs: 20px; |
| 48 | @semi-medium-fs: 18px; |
| 49 | @regular-fs: 16px; |
| 50 | @small-fs: 14px; |
| 51 | @mini-fs: 12px; |
| 52 | |
| 53 | //color |
| 54 | @h1-color: @color-text-prime; |
| 55 | @h2-color: @color-text-prime; |
| 56 | @h3-color: @color-text-prime; |
| 57 | @h4-color: @color-text-prime; |
| 58 | @h5-color: @color-text-prime; |
| 59 | |
| 60 | //weight |
| 61 | @h1-fw: @regular; |
| 62 | @h2-fw: @regular; |
| 63 | @h3-fw: @medium; |
| 64 | @h4-fw: @medium; |
| 65 | |
| 66 | //line height |
| 67 | @h1-lh: 1.5; |
| 68 | @h2-lh: 1.5; |
| 69 | @h3-lh: 1.5; |
| 70 | @h4-lh: 1.5; |
| 71 | |
| 72 | @h1-fs: @medium-fs; |
| 73 | @h2-fs: @medium-fs; |
| 74 | @h3-fs: @regular-fs; |
| 75 | @h4-fs: @regular-fs; |
| 76 | |
| 77 | //padding and margin |
| 78 | @h1-padding: 28px 0 28px 0; |
| 79 | @padding-big: 24px; |
| 80 | @padding-medium: 16px; |
| 81 | @padding-small: 8px; |
| 82 | |
| 83 | @margin-big: 24px; |
| 84 | @margin-medium: 16px; |
| 85 | @margin-small: 8px; |
| 86 | |
| 87 | //------------------------------- |
| 88 | |
| 89 | // MEDIA QUERIES |
| 90 | |
| 91 | //brakepoints |
| 92 | @bp-xsmall-max: 479px; |
| 93 | @bp-xsmall-min: 481px; |
| 94 | @bp-small-max: 767px; |
| 95 | @bp-small-min: 768px; |
| 96 | @bp-medium-max: 991px; |
| 97 | @bp-medium-min: 992px; |
| 98 | @bp-large-max: 1199px; |
| 99 | @bp-large-min: 1200px; |
| 100 | @bp-xlarge-max: 1600px; |
| 101 | @bp-xlarge-min: 1601px; |
| 102 | |
| 103 | //@media |
| 104 | @less-then-xlarge: ~"only screen and ( max-width:" @bp-xlarge-max ~")"; |
| 105 | @less-then-large: ~"only screen and ( max-width:" @bp-large-max ~")"; |
| 106 | @less-then-medium: ~"only screen and ( max-width:" @bp-medium-max ~")"; |
| 107 | @less-then-small: ~"only screen and ( max-width:" @bp-small-max ~")"; |
| 108 | @less-then-xsmall: ~"only screen and ( max-width:" @bp-xsmall-max ~")"; |
| 109 | |
| 110 | @more-then-xlarge: ~"only screen and ( min-width:" @bp-xlarge-min ~")"; |
| 111 | @more-then-large: ~"only screen and ( min-width:" @bp-large-min ~")"; |
| 112 | @more-then-medium: ~"only screen and ( min-width:" @bp-medium-min ~")"; |
| 113 | @more-then-small: ~"only screen and ( min-width:" @bp-small-min ~")"; |
| 114 | |
| 115 | @from-small-to-medium: ~"only screen and (min-width:" @bp-small-min ~") and (max-width:" @bp-medium-max ~")"; |
| 116 | @from-medium-to-large: ~"only screen and (min-width:" @bp-medium-min ~") and (max-width:" @bp-large-max ~")"; |
| 117 | @from-medium-to-xlarge: ~"only screen and (min-width:" @bp-medium-min ~") and (max-width:" @bp-xlarge-max ~")"; |
| 118 | @from-large-to-xlarge: ~"only screen and (min-width:" @bp-large-min ~") and (max-width:" @bp-xlarge-max ~")"; |
| 119 | |
| 120 | //------------------------------- |
| 121 | |
| 122 | // BORDERS / DIVIDERS |
| 123 | |
| 124 | //border radius |
| 125 | |
| 126 | @border-radius: 6px; |
| 127 | |
| 128 | //------------------------------- |
| 129 | |
| 130 | // BUTTONS |
| 131 | |
| 132 | //color |
| 133 | @btn-light-bg: @color-white; |
| 134 | @btn-light-font: @color-white; |
| 135 | @btn-blue-bg: @color-blue; |
| 136 | @btn-dark-font: @color-text-prime; |
| 137 | |
| 138 | //font weight |
| 139 | @btn-fw: @medium; |
| 140 | |
| 141 | //font size |
| 142 | @btn-xlarge-fs: 15px; |
| 143 | @btn-large-fs: 15px; |
| 144 | @btn-small-fs: 14px; |
| 145 | |
| 146 | //border radius |
| 147 | @btn-border-radius: 6px; |
| 148 | |
| 149 | //padding |
| 150 | @btn-xlarge-pad: 20px 65px; |
| 151 | @btn-large-pad: 13px 20px; |
| 152 | @btn-medium-pad: 10px 20px; |
| 153 | @btn-small-pad: 10px 15px; |
| 154 | |
| 155 | //letter spacing |
| 156 | @btn-letter-spacing: 1px; |
| 157 | |
| 158 | //------------------------------- |
| 159 | |
| 160 | // SECTIONS |
| 161 | |
| 162 | //------------------------------- |
| 163 | |
| 164 | @section-padding: 80px 0 50px; |
| 165 | |
| 166 | //------------------------------- |
| 167 | |
| 168 |