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.

484 lines
14 KiB

  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 : "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
  13. @pageFont : "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
  14. @fontSmoothing : antialiased;
  15. /*-------------------
  16. Site Colors
  17. --------------------*/
  18. /*--- Colors ---*/
  19. @blue : #0074D9;
  20. @green : #2ECC40;
  21. @orange : #FF851B;
  22. @pink : #D9499A;
  23. @purple : #A24096;
  24. @red : #FF4136;
  25. @teal : #39CCCC;
  26. @yellow : #FFCB08;
  27. @black : #191919;
  28. @grey : #CCCCCC;
  29. @white : #FFFFFF;
  30. /*--- Light Colors ---*/
  31. @lightBlue : #54C8FF;
  32. @lightGreen : #2ECC40;
  33. @lightOrange : #FF851B;
  34. @lightPink : #FF8EDF;
  35. @lightPurple : #CDC6FF;
  36. @lightRed : #FF695E;
  37. @lightTeal : #6DFFFF;
  38. @lightYellow : #FFE21F;
  39. @primaryColor : @blue;
  40. @secondaryColor : @black;
  41. /*-------------------
  42. Page
  43. --------------------*/
  44. @bodyBackground : #FCFCFC;
  45. @fontSize : 14px;
  46. @textColor : rgba(0, 0, 0, 0.8);
  47. @headerMargin : 1em 0em 1rem;
  48. @paragraphMargin : 0em 0em 1em;
  49. @linkColor : #009FDA;
  50. @linkUnderline : none;
  51. @linkHoverColor : lighten( @linkColor, 5);
  52. @highlightBackground : #FFFFCC;
  53. @highlightColor : @textColor;
  54. /*-------------------
  55. Background Colors
  56. --------------------*/
  57. @subtleTransparentBlack : rgba(0, 0, 0, 0.03);
  58. @transparentBlack : rgba(0, 0, 0, 0.05);
  59. @strongTransparentBlack : rgba(0, 0, 0, 0.10);
  60. @subtleTransparentWhite : rgba(255, 255, 255, 0.01);
  61. @transparentWhite : rgba(255, 255, 255, 0.05);
  62. @strongTransparentWhite : rgba(255, 255, 255, 0.01);
  63. /* Used for differentiating neutrals */
  64. @subtleGradient: linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  65. /* Used for differentiating layers */
  66. @subtleShadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
  67. /*-------------------
  68. Grid
  69. --------------------*/
  70. @columnCount: 16;
  71. /*-------------------
  72. Breakpoints
  73. --------------------*/
  74. @mobileBreakpoint : 320px;
  75. @tabletBreakpoint : 768px;
  76. @computerBreakpoint : 992px;
  77. @largeMonitorBreakpoint : 1400px;
  78. @widescreenMonitorBreakpoint : 1900px;
  79. /*******************************
  80. Power-User
  81. *******************************/
  82. /*-------------------
  83. Icons
  84. --------------------*/
  85. /* Max Width of Icon */
  86. @iconWidth : 1.23em;
  87. /*-------------------
  88. Easing
  89. --------------------*/
  90. @defaultEasing: ease;
  91. /*--- Neutrals ---*/
  92. @fullBlack : #000000;
  93. @lightBlack : #333333;
  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. @orangeTextColor : @orange;
  110. @pinkTextColor : @pink;
  111. @purpleTextColor : @purple;
  112. @redTextColor : @red;
  113. @greenTextColor : #1EBC30; // Green is difficult to read
  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 : #E4F5DD;
  130. @negativeBackgroundColor : #FAE8E8;
  131. @positiveBorderColor : #B7CAA7;
  132. @negativeBorderColor : #DBB1B1;
  133. /* Solid Background Color */
  134. @positiveColor : @green;
  135. @negativeColor : @red;
  136. @positiveTextColor : #3C763D;
  137. @negativeTextColor : #A94442;
  138. /* Status */
  139. @infoBackgroundColor : #E5F6FB;
  140. @warningBackgroundColor : #FCF8E3;
  141. @successBackgroundColor : @positiveBackgroundColor;
  142. @errorBackgroundColor : @negativeBackgroundColor;
  143. @infoBorderColor : #AAD6DF;
  144. @warningBorderColor : #D3C4A5;
  145. @successBorderColor : @positiveBorderColor;
  146. @errorBorderColor : @negativeBorderColor;
  147. @infoTextColor : #337B92;
  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, 7);
  257. @secondaryColorHover : lighten( @secondaryColor, 7);
  258. @blueHover : lighten( @blue, 7);
  259. @greenHover : lighten( @green, 7);
  260. @orangeHover : lighten( @orange, 7);
  261. @pinkHover : lighten( @pink, 7);
  262. @purpleHover : lighten( @purple, 7);
  263. @redHover : lighten( @red, 7);
  264. @tealHover : lighten( @teal, 7);
  265. @yellowHover : lighten( @yellow, 7);
  266. @lightBlueHover : lighten( @lightBlue, 7);
  267. @lightGreenHover : lighten( @lightGreen, 7);
  268. @lightOrangeHover : lighten( @lightOrange, 7);
  269. @lightPinkHover : lighten( @lightPink, 7);
  270. @lightPurpleHover : lighten( @lightPurple, 7);
  271. @lightRedHover : lighten( @lightRed, 7);
  272. @lightTealHover : lighten( @lightTeal, 7);
  273. @lightYellowHover : lighten( @lightYellow, 7);
  274. /*--- Emotive ---*/
  275. @positiveColorHover : lighten( @positiveColor, 7);
  276. @negativeColorHover : lighten( @negativeColor, 7);
  277. /*--- Neutrals ---*/
  278. @fullBlackHover : lighten( @fullBlack, 7);
  279. @blackHover : lighten( @black, 7);
  280. @lightBlackHover : lighten( @lightBlack, 7);
  281. @lightGreyHover : lighten( @lightGrey, 7);
  282. @greyHover : lighten( @grey, 7);
  283. @darkGreyHover : lighten( @darkGrey, 7);
  284. @whiteHover : lighten( @white, 7);
  285. @offWhiteHover : lighten( @offWhite, 7);
  286. @darkWhiteHover : lighten( @darkWhite, 7);
  287. @facebookHoverColor : lighten( @facebookColor, 7);
  288. @twitterHoverColor : lighten( @twitterColor, 7);
  289. @googlePlusHoverColor : lighten( @googlePlusColor, 7);
  290. @linkedInHoverColor : lighten( @linkedInColor, 7);
  291. @youtubeHoverColor : lighten( @youtubeColor, 7);
  292. @instagramHoverColor : lighten( @instagramColor, 7);
  293. @pinterestHoverColor : lighten( @pinterestColor, 7);
  294. @vkHoverColor : lighten( @vkColor, 7);
  295. /*-------------------
  296. Down (:active)
  297. --------------------*/
  298. /*--- Colors ---*/
  299. @primaryColorDown : darken(@primaryColor, 7);
  300. @secondaryColorDown : darken(@secondaryColor, 7);
  301. @blueDown : darken(@blue, 7);
  302. @greenDown : darken(@green, 7);
  303. @orangeDown : darken(@orange, 7);
  304. @pinkDown : darken(@pink, 7);
  305. @purpleDown : darken(@purple, 7);
  306. @redDown : darken(@red, 7);
  307. @tealDown : darken(@teal, 7);
  308. @yellowDown : darken(@yellow, 7);
  309. @lightBlueDown : darken(@lightBlue, 7);
  310. @lightGreenDown : darken(@lightGreen, 7);
  311. @lightOrangeDown : darken(@lightOrange, 7);
  312. @lightPinkDown : darken(@lightPink, 7);
  313. @lightPurpleDown : darken(@lightPurple, 7);
  314. @lightRedDown : darken(@lightRed, 7);
  315. @lightTealDown : darken(@lightTeal, 7);
  316. @lightYellowDown : darken(@lightYellow, 7);
  317. /*--- Emotive ---*/
  318. @positiveColorDown : darken(@positiveColor, 7);
  319. @negativeColorDown : darken(@negativeColor, 7);
  320. /*--- Neutrals ---*/
  321. @fullBlackDown : darken(@fullBlack, 7);
  322. @blackDown : darken(@black, 7);
  323. @lightBlackDown : darken(@lightBlack, 7);
  324. @lightGreyDown : darken(@lightGrey, 7);
  325. @greyDown : darken(@grey, 7);
  326. @darkGreyDown : darken(@darkGrey, 7);
  327. @whiteDown : darken(@white, 7);
  328. @offWhiteDown : darken(@offWhite, 7);
  329. @darkWhiteDown : darken(@darkWhite, 7);
  330. @facebookDownColor : darken(@facebookColor, 7);
  331. @twitterDownColor : darken(@twitterColor, 7);
  332. @googlePlusDownColor : darken(@googlePlusColor, 7);
  333. @linkedInDownColor : darken(@linkedInColor, 7);
  334. @youtubeDownColor : darken(@youtubeColor, 7);
  335. @instagramDownColor : darken(@instagramColor, 7);
  336. @pinterestDownColor : darken(@pinterestColor, 7);
  337. @vkDownColor : darken(@vkColor, 7);
  338. /*-------------------
  339. Active
  340. --------------------*/
  341. /*--- Standard ---*/
  342. @primaryColorActive : darken(@primaryColor, 5);
  343. @secondaryColorActive : darken(@secondaryColor, 5);
  344. @blueActive : darken(@blue, 5);
  345. @greenActive : darken(@green, 5);
  346. @orangeActive : darken(@orange, 5);
  347. @pinkActive : darken(@pink, 5);
  348. @purpleActive : darken(@purple, 5);
  349. @redActive : darken(@red, 5);
  350. @tealActive : darken(@teal, 5);
  351. @yellowActive : darken(@yellow, 5);
  352. @lightBlueActive : darken(@lightBlue, 5);
  353. @lightGreenActive : darken(@lightGreen, 5);
  354. @lightOrangeActive : darken(@lightOrange, 5);
  355. @lightPinkActive : darken(@lightPink, 5);
  356. @lightPurpleActive : darken(@lightPurple, 5);
  357. @lightRedActive : darken(@lightRed, 5);
  358. @lightTealActive : darken(@lightTeal, 5);
  359. @lightYellowActive : darken(@lightYellow, 5);
  360. /*--- Emotive ---*/
  361. @positiveColorActive : darken(@positiveColor, 5);
  362. @negativeColorActive : darken(@negativeColor, 5);
  363. /*--- Neutrals ---*/
  364. @fullBlackActive : darken(@fullBlack, 5);
  365. @blackActive : darken(@black, 5);
  366. @lightBlackActive : darken(@lightBlack, 5);
  367. @lightGreyActive : darken(@lightGrey, 5);
  368. @greyActive : darken(@grey, 5);
  369. @darkGreyActive : darken(@darkGrey, 5);
  370. @whiteActive : darken(@white, 5);
  371. @offWhiteActive : darken(@offWhite, 5);
  372. @darkWhiteActive : darken(@darkWhite, 5);
  373. @facebookActiveColor : darken(@facebookColor, 5);
  374. @twitterActiveColor : darken(@twitterColor, 5);
  375. @googlePlusActiveColor : darken(@googlePlusColor, 5);
  376. @linkedInActiveColor : darken(@linkedInColor, 5);
  377. @youtubeActiveColor : darken(@youtubeColor, 5);
  378. @instagramActiveColor : darken(@instagramColor, 5);
  379. @pinterestActiveColor : darken(@pinterestColor, 5);
  380. @vkActiveColor : darken(@vkColor, 5);