You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

421 lines
12 KiB

10 years ago
10 years ago
  1. /*******************************
  2. Global Variables
  3. *******************************/
  4. /*-------------------
  5. Paths
  6. --------------------*/
  7. @imagePath : "../../themes/packages/default/assets/images";
  8. @fontPath : "../../themes/packages/default/assets/fonts";
  9. /*-------------------
  10. Page
  11. --------------------*/
  12. @bodyBackground : #FCFCFC;
  13. @fontSize : 14px;
  14. @textColor : rgba(0, 0, 0, 0.8);
  15. @headerMargin : 1em 0em 1rem;
  16. @paragraphMargin : 1em 0em;
  17. @linkColor : #009FDA;
  18. @linkUnderline : none;
  19. @linkHoverColor : lighten( @linkColor, 5);
  20. @highlightBackground : #FFFFCC;
  21. @highlightColor : @textColor;
  22. /*-------------------
  23. Grid
  24. --------------------*/
  25. @columnCount: 16;
  26. @oneWide : (1 / @columnCount * 100%);
  27. @twoWide : (2 / @columnCount * 100%);
  28. @threeWide : (3 / @columnCount * 100%);
  29. @fourWide : (4 / @columnCount * 100%);
  30. @fiveWide : (5 / @columnCount * 100%);
  31. @sixWide : (6 / @columnCount * 100%);
  32. @sevenWide : (7 / @columnCount * 100%);
  33. @eightWide : (8 / @columnCount * 100%);
  34. @nineWide : (9 / @columnCount * 100%);
  35. @tenWide : (10 / @columnCount * 100%);
  36. @elevenWide : (11 / @columnCount * 100%);
  37. @twelveWide : (12 / @columnCount * 100%);
  38. @thirteenWide : (13 / @columnCount * 100%);
  39. @fourteenWide : (14 / @columnCount * 100%);
  40. @fifteenWide : (15 / @columnCount * 100%);
  41. @sixteenWide : (16 / @columnCount * 100%);
  42. @oneColumn : (1 / 1 * 100%);
  43. @twoColumn : (1 / 2 * 100%);
  44. @threeColumn : (1 / 3 * 100%);
  45. @fourColumn : (1 / 4 * 100%);
  46. @fiveColumn : (1 / 5 * 100%);
  47. @sixColumn : (1 / 6 * 100%);
  48. @sevenColumn : (1 / 7 * 100%);
  49. @eightColumn : (1 / 8 * 100%);
  50. @nineColumn : (1 / 9 * 100%);
  51. @tenColumn : (1 / 10 * 100%);
  52. @elevenColumn : (1 / 11 * 100%);
  53. @twelveColumn : (1 / 12 * 100%);
  54. @thirteenColumn : (1 / 13 * 100%);
  55. @fourteenColumn : (1 / 14 * 100%);
  56. @fifteenColumn : (1 / 15 * 100%);
  57. @sixteenColumn : (1 / 16 * 100%);
  58. /*-------------------
  59. Breakpoints
  60. --------------------*/
  61. @mobileBreakpoint : 320px;
  62. @tabletBreakpoint : 768px;
  63. @computerBreakpoint : 992px;
  64. @largeMonitorBreakpoint : 1400px;
  65. @widescreenMonitorBreakpoint : 1900px;
  66. /*-------------------
  67. Fonts
  68. --------------------*/
  69. @headerFont : "Helvetica Neue", Arial, Helvetica, sans-serif;
  70. @pageFont : "Helvetica Neue", Arial, Helvetica, sans-serif;
  71. /*-------------------
  72. Icons
  73. --------------------*/
  74. /* Max Width of Icon */
  75. @iconWidth : 1.23em;
  76. /*-------------------
  77. Easing
  78. --------------------*/
  79. @defaultEasing: 'ease';
  80. /*******************************
  81. BG Colors
  82. *******************************/
  83. @subtleTransparentBlack : rgba(0, 0, 0, 0.01);
  84. @transparentBlack : rgba(0, 0, 0, 0.05);
  85. @strongTransparentBlack : rgba(0, 0, 0, 0.10);
  86. @subtleTransparentWhite : rgba(255, 255, 255, 0.01);
  87. @transparentWhite : rgba(255, 255, 255, 0.05);
  88. @strongTransparentWhite : rgba(255, 255, 255, 0.01);
  89. /*******************************
  90. Colors
  91. *******************************/
  92. /*--- Colors ---*/
  93. @blue : #0074D9;
  94. @green : #2ECC40;
  95. @orange : #FF851B;
  96. @pink : #D9499A;
  97. @purple : #564F8A;
  98. @red : #FF4136;
  99. @teal : #39CCCC;
  100. @yellow : #FFCB08;
  101. @lightBlue : #54C8FF;
  102. @lightGreen : #2ECC40;
  103. @lightOrange : #FF851B;
  104. @lightPink : #FF8EDF;
  105. @lightPurple : #CDC6FF;
  106. @lightRed : #FF695E;
  107. @lightTeal : #6DFFFF;
  108. @lightYellow : #FFE21F;
  109. @primaryColor : @teal;
  110. @secondaryColor : @black;
  111. @tertiaryColor : @orange;
  112. /*--- Neutrals ---*/
  113. @darkBlack : #232323;
  114. @black : #333333;
  115. @lightBlack : #555555;
  116. @darkGrey : #AAAAAA;
  117. @grey : #CCCCCC;
  118. @lightGrey : #DCDDDE;
  119. @white : #FFFFFF;
  120. @offWhite : #FAFAFA;
  121. @darkWhite : #F0F0F0;
  122. /*--- Text Colors ---*/
  123. /* Preserve */
  124. @blueTextColor : @blue;
  125. @greenTextColor : @green;
  126. @orangeTextColor : @orange;
  127. @pinkTextColor : @pink;
  128. @purpleTextColor : @purple;
  129. @redTextColor : @red;
  130. @tealTextColor : @teal;
  131. /* Adjust for Legibility */
  132. @yellowTextColor : #EAB600;
  133. /*--- Backgrounds ---*/
  134. @blueBackground : #D3E4F3;
  135. @greenBackground : #DEF2E0;
  136. @orangeBackground : #F7E5D6;
  137. @pinkBackground : #F9CEE6;
  138. @purpleBackground : #E0DDF5;
  139. @redBackground : #F8D5D3;
  140. @tealBackground : #D2F5F5;
  141. @yellowBackground : #FCF5D8;
  142. /*-------------------
  143. Emotive Colors
  144. --------------------*/
  145. /* Positive / Negative */
  146. @positiveBackgroundColor : #DFF0D8;
  147. @negativeBackgroundColor : #F2DEDE;
  148. @positiveBorderColor : #D6E9C6;
  149. @negativeBorderColor : #DA9797;
  150. @positiveColor : @green;
  151. @negativeColor : @red;
  152. @positiveTextColor : #3C763D;
  153. @negativeTextColor : #A94442;
  154. /* Messages */
  155. @infoBackgroundColor : #D9EDF7;
  156. @warningBackgroundColor : #FCF8E3;
  157. @successBackgroundColor : @positiveBackgroundColor;
  158. @errorBackgroundColor : @negativeBackgroundColor;
  159. @infoBorderColor : #BCE8F1;
  160. @warningBorderColor : #FAEBCC;
  161. @successBorderColor : @positiveBorderColor;
  162. @errorBorderColor : @negativeBorderColor;
  163. @infoTextColor : #31708F;
  164. @warningTextColor : #8A6D3B;
  165. @successTextColor : @positiveTextColor;
  166. @errorTextColor : @negativeTextColor;
  167. /*-------------------
  168. Text Colors
  169. --------------------*/
  170. @darkTextColor : rgba(0, 0, 0, 0.85);
  171. @lightTextColor : rgba(0, 0, 0, 0.4);
  172. @invertedTextColor : rgba(255, 255, 255, 1);
  173. @invertedLightTextColor : rgba(255, 255, 255, 0.8);
  174. @invertedUnselectedTextColor : rgba(255, 255, 255, 0.5);
  175. @invertedSelectedTextColor : rgba(255, 255, 255, 1);
  176. @invertedDisabledTextColor : rgba(255, 255, 255, 0.3);
  177. @unselectedTextColor : rgba(0, 0, 0, 0.4);
  178. @selectedTextColor : rgba(0, 0, 0, 0.8);
  179. @disabledTextColor : rgba(0, 0, 0, 0.2);
  180. /*-------------------
  181. Brand Colors
  182. --------------------*/
  183. @facebookColor : #3B579D;
  184. @twitterColor : #4092CC;
  185. @googlePlusColor : #D34836;
  186. @linkedInColor : #1F88BE;
  187. @youtubeColor : #CC181E;
  188. @instagramColor : #49769C;
  189. @pinterestColor : #00ACED;
  190. @vkColor : #4D7198;
  191. /*-------------------
  192. Borders
  193. --------------------*/
  194. @circularRadius : 500rem;
  195. @borderColor : rgba(0, 0, 0, 0.1);
  196. @selectedBorderColor : rgba(0, 0, 0, 0.2);
  197. @solidBorderColor : #DDDDDD;
  198. @whiteBorderColor : rgba(255, 255, 255, 0.2);
  199. @selectedWhiteBorderColor : rgba(255, 255, 255, 0.8);
  200. /*-------------------
  201. Sizes
  202. --------------------*/
  203. @mini : 0.7em;
  204. @tiny : 0.8em;
  205. @small : 0.875em;
  206. @medium : 1em;
  207. @large : 1.125em;
  208. @big : 1.25em;
  209. @huge : 1.375em;
  210. @massive : 1.5em;
  211. /*-------------------
  212. Transitions
  213. --------------------*/
  214. @transitionDuration : 0.25s;
  215. @transitionEasing : ease;
  216. /*******************************
  217. States
  218. *******************************/
  219. /*-------------------
  220. Disabled
  221. --------------------*/
  222. @disabledOpacity: 0.3;
  223. /*-------------------
  224. Hover
  225. --------------------*/
  226. /*--- Colors ---*/
  227. @primaryColorHover : lighten( @primaryColor, 5);
  228. @secondaryColorHover : lighten( @secondaryColor, 5);
  229. @tertiaryColorHover : lighten( @tertiaryColor, 5);
  230. @blueHover : lighten( @blue, 5);
  231. @greenHover : lighten( @green, 5);
  232. @orangeHover : lighten( @orange, 5);
  233. @pinkHover : lighten( @pink, 5);
  234. @purpleHover : lighten( @purple, 5);
  235. @redHover : lighten( @red, 5);
  236. @tealHover : lighten( @teal, 5);
  237. @yellowHover : lighten( @yellow, 5);
  238. /*--- Emotive ---*/
  239. @positiveColorHover : lighten( @positiveColor, 5);
  240. @negativeColorHover : lighten( @negativeColor, 5);
  241. /*--- Neutrals ---*/
  242. @darkBlackHover : lighten( @darkBlack, 5);
  243. @blackHover : lighten( @black, 5);
  244. @lightBlackHover : lighten( @lightBlack, 5);
  245. @lightGreyHover : lighten( @lightGrey, 5);
  246. @greyHover : lighten( @grey, 5);
  247. @darkGreyHover : lighten( @darkGrey, 5);
  248. @whiteHover : lighten( @white, 5);
  249. @offWhiteHover : lighten( @offWhite, 5);
  250. @darkWhiteHover : lighten( @darkWhite, 5);
  251. @facebookHoverColor : lighten( @facebookColor, 5);
  252. @twitterHoverColor : lighten( @twitterColor, 5);
  253. @googlePlusHoverColor : lighten( @googlePlusColor, 5);
  254. @linkedInHoverColor : lighten( @linkedInColor, 5);
  255. @youtubeHoverColor : lighten( @youtubeColor, 5);
  256. @instagramHoverColor : lighten( @instagramColor, 5);
  257. @pinterestHoverColor : lighten( @pinterestColor, 5);
  258. @vkHoverColor : lighten( @vkColor, 5);
  259. /*-------------------
  260. Down (:active)
  261. --------------------*/
  262. /*--- Colors ---*/
  263. @primaryColorDown : darken(@primaryColor, 7);
  264. @secondaryColorDown : darken(@secondaryColor, 7);
  265. @tertiaryColorDown : darken(@tertiaryColor, 7);
  266. @blueDown : darken(@blue, 7);
  267. @greenDown : darken(@green, 7);
  268. @orangeDown : darken(@orange, 7);
  269. @pinkDown : darken(@pink, 7);
  270. @purpleDown : darken(@purple, 7);
  271. @redDown : darken(@red, 7);
  272. @tealDown : darken(@teal, 7);
  273. @yellowDown : darken(@yellow, 7);
  274. /*--- Emotive ---*/
  275. @positiveColorDown : darken(@positiveColor, 7);
  276. @negativeColorDown : darken(@negativeColor, 7);
  277. /*--- Neutrals ---*/
  278. @darkBlackDown : darken(@darkBlack, 7);
  279. @blackDown : darken(@black, 7);
  280. @lightBlackDown : darken(@lightBlack, 7);
  281. @lightGreyDown : darken(@lightGrey, 7);
  282. @greyDown : darken(@grey, 7);
  283. @darkGreyDown : darken(@darkGrey, 7);
  284. @whiteDown : darken(@white, 7);
  285. @offWhiteDown : darken(@offWhite, 7);
  286. @darkWhiteDown : darken(@darkWhite, 7);
  287. @facebookDownColor : darken(@facebookColor, 7);
  288. @twitterDownColor : darken(@twitterColor, 7);
  289. @googlePlusDownColor : darken(@googlePlusColor, 7);
  290. @linkedInDownColor : darken(@linkedInColor, 7);
  291. @youtubeDownColor : darken(@youtubeColor, 7);
  292. @instagramDownColor : darken(@instagramColor, 7);
  293. @pinterestDownColor : darken(@pinterestColor, 7);
  294. @vkDownColor : darken(@vkColor, 7);
  295. /*-------------------
  296. Active
  297. --------------------*/
  298. /*--- Standard ---*/
  299. @primaryColorActive : darken(@primaryColor, 5);
  300. @secondaryColorActive : darken(@secondaryColor, 5);
  301. @tertiaryColorActive : darken(@tertiaryColor, 5);
  302. @blueActive : darken(@blue, 5);
  303. @greenActive : darken(@green, 5);
  304. @orangeActive : darken(@orange, 5);
  305. @pinkActive : darken(@pink, 5);
  306. @purpleActive : darken(@purple, 5);
  307. @redActive : darken(@red, 5);
  308. @tealActive : darken(@teal, 5);
  309. @yellowActive : darken(@yellow, 5);
  310. /*--- Emotive ---*/
  311. @positiveColorActive : darken(@positiveColor, 5);
  312. @negativeColorActive : darken(@negativeColor, 5);
  313. /*--- Neutrals ---*/
  314. @darkBlackActive : darken(@darkBlack, 5);
  315. @blackActive : darken(@black, 5);
  316. @lightBlackActive : darken(@lightBlack, 5);
  317. @lightGreyActive : darken(@lightGrey, 5);
  318. @greyActive : darken(@grey, 5);
  319. @darkGreyActive : darken(@darkGrey, 5);
  320. @whiteActive : darken(@white, 5);
  321. @offWhiteActive : darken(@offWhite, 5);
  322. @darkWhiteActive : darken(@darkWhite, 5);
  323. @facebookActiveColor : darken(@facebookColor, 5);
  324. @twitterActiveColor : darken(@twitterColor, 5);
  325. @googlePlusActiveColor : darken(@googlePlusColor, 5);
  326. @linkedInActiveColor : darken(@linkedInColor, 5);
  327. @youtubeActiveColor : darken(@youtubeColor, 5);
  328. @instagramActiveColor : darken(@instagramColor, 5);
  329. @pinterestActiveColor : darken(@pinterestColor, 5);
  330. @vkActiveColor : darken(@vkColor, 5);