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.

358 lines
8.8 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. .o_noPaddingMargin{
  2. padding: 0!important;
  3. margin: 0!important;
  4. }
  5. .o_mainRow{
  6. height: calc(100%/4);
  7. }
  8. .o_floatRight{
  9. float: right;
  10. }
  11. .o_loginBackground{
  12. height: 100%!important;
  13. width: 100%;
  14. min-height: auto;
  15. -webkit-background-size: cover;
  16. -moz-background-size: cover;
  17. background-size: cover;
  18. -o-background-size: cover;
  19. background-position: center;
  20. background-image: url('../img/userProfileBackground.png');
  21. text-align: center;
  22. /*color: white;*/
  23. /* Create the parallax scrolling effect */
  24. background-attachment: fixed;
  25. background-position: center;
  26. background-repeat: no-repeat;
  27. background-size: cover;
  28. color: #ffffff;
  29. padding-top: 30%;
  30. }
  31. @font-face {
  32. font-family: 'Thinking_of_Betty';
  33. src: url('../fonts/Thinking_of_Betty.ttf');
  34. }
  35. .o_loginBackground h1{
  36. color: #ffffff!important;
  37. margin: 10px;
  38. font-family: 'Thinking_of_Betty'
  39. /*font-weight: bold;*/
  40. }
  41. .o_loginDivForm{
  42. /*background: rgba(255, 255, 255, 0.2);*/
  43. }
  44. .o_loginInput{
  45. background: rgba(255, 255, 255, 0.2);
  46. padding:10px;
  47. color: #ffffff;
  48. border: 0px;
  49. width: 80%;
  50. font-size: 120%;
  51. }
  52. .o_loginInput::-webkit-input-placeholder{
  53. color: rgba(255, 255, 255, 0.6);
  54. }
  55. .o_loginButton{
  56. color: rgba(0, 0, 0, 0.8);
  57. font-weight: bold;
  58. margin: 10%;
  59. }
  60. .o_signupLink{
  61. text-decoration: none;
  62. color: #ffffff;
  63. }
  64. .o_transparentBackground{
  65. background: rgba(255, 255, 255, 0);
  66. color: #ffffff;
  67. }
  68. .o_userProfileBackground{
  69. min-height: 30%!important;
  70. width: 100%;
  71. min-height: auto;
  72. -webkit-background-size: cover;
  73. -moz-background-size: cover;
  74. background-size: cover;
  75. -o-background-size: cover;
  76. background-position: center;
  77. background-image: url('../img/userProfileBackground.png');
  78. text-align: center;
  79. /*color: white;*/
  80. /* Create the parallax scrolling effect */
  81. background-attachment: fixed;
  82. background-position: center;
  83. background-repeat: no-repeat;
  84. background-size: cover;
  85. color: #ffffff;
  86. }
  87. .o_transparentInput{
  88. background: rgba(255, 255, 255, 0);
  89. color: #ffffff;
  90. border: 0px;
  91. width: 80%;
  92. }
  93. .o_userImgCircular {
  94. margin-top: 5%;
  95. background: #ffffff;
  96. width: 40%;
  97. border: 4px #ffffff solid;
  98. border-radius: 150px;
  99. -webkit-border-radius: 150px;
  100. -moz-border-radius: 150px;
  101. }
  102. .o_userImgCircular p{
  103. color: #ffffff!important;
  104. }
  105. .o_userImgCircularMini {
  106. background: #ffffff;
  107. width: 35px;
  108. border-radius: 150px;
  109. -webkit-border-radius: 150px;
  110. -moz-border-radius: 150px;
  111. }
  112. /*
  113. SISTEMA DE COLORS
  114. users: blue
  115. routines: red
  116. diets: yellow
  117. la nomenclatura és:
  118. o_bColor
  119. la 'o' és de 'own', per saber que és una classe pròpia nostra i que no colisioni amb les classes dels frameworks css
  120. la 'b' és de background, si és una 'f' és de font
  121. a part podem posar ColorDark o ColorLight per fer un color més fosc o més clar
  122. */
  123. .o_bSidenav{
  124. background: #ffffff!important;
  125. color: #616161!important;
  126. }
  127. .o_fWhiteLight{
  128. color: #c6ccd2!important;
  129. }
  130. .o_bGrey{
  131. background: #e6e6e6!important;
  132. color: #000000!important;
  133. }
  134. .o_bGreyLight{
  135. background: #CFD8DC!important;
  136. color: #000000!important;
  137. }
  138. /* backgrounds color: bColor */
  139. .o_bRed{
  140. background: rgb(252,87,85)!important;
  141. color: #ffffff!important;
  142. }
  143. .o_bRedLight{
  144. background: #E57373!important;
  145. color: #ffffff!important;
  146. }
  147. .o_bRedDark{
  148. background: rgb(218, 89, 120)!important;
  149. color: #ffffff!important;
  150. }
  151. .o_bGreen{
  152. background: rgb(123,195,70)!important;
  153. color: #ffffff!important;
  154. }
  155. .o_bGreenLight{
  156. background: #81C784!important;
  157. color: #ffffff!important;
  158. }
  159. .o_bGreenDark{
  160. background: rgb(54,188,155)!important;
  161. color: #ffffff!important;
  162. }
  163. .o_bBlue{
  164. background: rgb(104,195,240)!important;
  165. color: #ffffff!important;
  166. }
  167. .o_bBlueDark{
  168. background: rgb(72,118,180)!important;
  169. color: #ffffff!important;
  170. }
  171. .o_bYellow{
  172. background: rgb(251,187,61)!important;
  173. color: #ffffff!important;
  174. }
  175. .o_bYellowDark{
  176. background: #F9A825!important;
  177. color: #ffffff!important;
  178. }
  179. .o_bOrange{
  180. background: rgb(251, 126, 61)!important;
  181. color: #ffffff!important;
  182. }
  183. .o_bOrangeDark{
  184. background: #FF7043!important;
  185. color: #ffffff!important;
  186. }
  187. /*.o_bPurple{
  188. background: #9575CD!important;
  189. color: #ffffff!important;
  190. }
  191. .o_bPurpleDark{
  192. background: #512DA8!important;
  193. color: #ffffff!important;
  194. }*/
  195. .o_grey50{
  196. background: #FAFAFA!important;
  197. color: #000000!important;
  198. }
  199. .o_grey100{
  200. background: #F5F5F5!important;
  201. color: #000000!important;
  202. }
  203. .o_grey200{
  204. background: #EEEEEE!important;
  205. color: #000000!important;
  206. }
  207. .o_grey300{
  208. background: #E0E0E0!important;
  209. color: #000000!important;
  210. }
  211. .o_grey400{
  212. background: #BDBDBD!important;
  213. color: #000000!important;
  214. }
  215. .o_grey500{
  216. background: #9E9E9E!important;
  217. color: #000000!important;
  218. }
  219. .o_grey600{
  220. background: #757575!important;
  221. color: #ffffff!important;
  222. }
  223. .o_grey700{
  224. background: #616161!important;
  225. color: #ffffff!important;
  226. }
  227. .o_grey800{
  228. background: #424242!important;
  229. color: #ffffff!important;
  230. }
  231. .o_grey900{
  232. background: #212121!important;
  233. color: #ffffff!important;
  234. }
  235. .o_purple50{
  236. background: #EDE7F6!important;
  237. color: #000000!important;
  238. }
  239. .o_purple100{
  240. background: #D1C4E9!important;
  241. color: #000000!important;
  242. }
  243. .o_purple200{
  244. background: #B39DDB!important;
  245. color: #000000!important;
  246. }
  247. .o_purple300{
  248. background: #9575CD!important;
  249. color: #ffffff!important;
  250. }
  251. .o_purple400{
  252. background: #7E57C2!important;
  253. color: #ffffff!important;
  254. }
  255. .o_purple500{
  256. background: #673AB7!important;
  257. color: #ffffff!important;
  258. }
  259. .o_purple600{
  260. background: #5E35B1!important;
  261. color: #ffffff!important;
  262. }
  263. .o_purple700{
  264. background: #512DA8!important;
  265. color: #ffffff!important;
  266. }
  267. .o_purple800{
  268. background: #4527A0!important;
  269. color: #ffffff!important;
  270. }
  271. .o_purple900{
  272. background: #311B92!important;
  273. color: #ffffff!important;
  274. }
  275. .o_purpleG000to200{
  276. background: -moz-linear-gradient(0deg, #ffffff 0%, #D1C4E9 100%); /* ff3.6+ */
  277. background: -webkit-gradient(linear, left top, right top, color-stop(0%, #ffffff), color-stop(100%, #D1C4E9)); /* safari4+,chrome */
  278. background: -webkit-linear-gradient(0deg, #ffffff 0%, #D1C4E9 100%); /* safari5.1+,chrome10+ */
  279. background: -o-linear-gradient(0deg, #ffffff 0%, #D1C4E9 100%); /* opera 11.10+ */
  280. background: -ms-linear-gradient(0deg, #ffffff 0%, #D1C4E9 100%); /* ie10+ */
  281. background: linear-gradient(90deg, #ffffff 0%, #D1C4E9 100%); /* w3c */
  282. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#D1C4E9',GradientType=1 ); /* ie6-9 */
  283. }
  284. .o_purpleG500to300{
  285. background: -moz-linear-gradient(219deg, #9575CD 0%, #673AB7 100%); /* ff3.6+ */
  286. background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #673AB7), color-stop(100%, #9575CD)); /* safari4+,chrome */
  287. background: -webkit-linear-gradient(219deg, #9575CD 0%, #673AB7 100%); /* safari5.1+,chrome10+ */
  288. background: -o-linear-gradient(219deg, #9575CD 0%, #673AB7 100%); /* opera 11.10+ */
  289. background: -ms-linear-gradient(219deg, #9575CD 0%, #673AB7 100%); /* ie10+ */
  290. background: linear-gradient(231deg, #9575CD 0%, #673AB7 100%); /* w3c */
  291. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#673AB7', endColorstr='#9575CD',GradientType=1 ); /* ie6-9 */
  292. color: #ffffff!important;
  293. }
  294. .o_purpleG300to500{
  295. background: -moz-linear-gradient(42deg, #9575CD 0%, #673AB7 100%); /* ff3.6+ */
  296. background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #9575CD), color-stop(100%, #673AB7)); /* safari4+,chrome */
  297. background: -webkit-linear-gradient(42deg, #9575CD 0%, #673AB7 100%); /* safari5.1+,chrome10+ */
  298. background: -o-linear-gradient(42deg, #9575CD 0%, #673AB7 100%); /* opera 11.10+ */
  299. background: -ms-linear-gradient(42deg, #9575CD 0%, #673AB7 100%); /* ie10+ */
  300. background: linear-gradient(48deg, #9575CD 0%, #673AB7 100%); /* w3c */
  301. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9575CD', endColorstr='#673AB7',GradientType=1 ); /* ie6-9 */
  302. color: #ffffff!important;
  303. }
  304. .o_text_white{
  305. color: #ffffff!important;
  306. }
  307. .o_text_grey400{
  308. color: #BDBDBD!important;
  309. }
  310. .o_text_grey500{
  311. color: #9E9E9E!important;
  312. }
  313. .o_text_grey600{
  314. color: #757575!important;
  315. }
  316. .o_text_grey700{
  317. color: #616161!important;
  318. }
  319. .o_text_grey800{
  320. color: #424242!important;
  321. }
  322. .o_text_grey900{
  323. color: #212121!important;
  324. }
  325. .o_text_purple300{
  326. color: #9575CD!important;
  327. }
  328. .o_text_purple400{
  329. color: #7E57C2!important;
  330. }
  331. .o_text_purple500{
  332. color: #673AB7!important;
  333. }
  334. .o_text_purple600{
  335. color: #5E35B1!important;
  336. }
  337. .o_text_purple700{
  338. color: #512DA8!important;
  339. }
  340. .o_text_purple800{
  341. color: #4527A0!important;
  342. }