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.

459 lines
13 KiB

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