Ionic + React accounts android app and PWA
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

variables.css 3.0 KiB

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /* Ionic Variables and Theming. For more info, please see:
  2. http://ionicframework.com/docs/theming/ */
  3. /** Ionic CSS Variables **/
  4. :root {
  5. /** primary **/
  6. --ion-color-primary: #3880ff;
  7. --ion-color-primary-rgb: 56, 128, 255;
  8. --ion-color-primary-contrast: #ffffff;
  9. --ion-color-primary-contrast-rgb: 255, 255, 255;
  10. --ion-color-primary-shade: #3171e0;
  11. --ion-color-primary-tint: #4c8dff;
  12. /** secondary **/
  13. --ion-color-secondary: #3dc2ff;
  14. --ion-color-secondary-rgb: 61, 194, 255;
  15. --ion-color-secondary-contrast: #ffffff;
  16. --ion-color-secondary-contrast-rgb: 255, 255, 255;
  17. --ion-color-secondary-shade: #36abe0;
  18. --ion-color-secondary-tint: #50c8ff;
  19. /** tertiary **/
  20. --ion-color-tertiary: #5260ff;
  21. --ion-color-tertiary-rgb: 82, 96, 255;
  22. --ion-color-tertiary-contrast: #ffffff;
  23. --ion-color-tertiary-contrast-rgb: 255, 255, 255;
  24. --ion-color-tertiary-shade: #4854e0;
  25. --ion-color-tertiary-tint: #6370ff;
  26. /** success **/
  27. --ion-color-success: #2dd36f;
  28. --ion-color-success-rgb: 45, 211, 111;
  29. --ion-color-success-contrast: #ffffff;
  30. --ion-color-success-contrast-rgb: 255, 255, 255;
  31. --ion-color-success-shade: #28ba62;
  32. --ion-color-success-tint: #42d77d;
  33. /** warning **/
  34. --ion-color-warning: #ffc409;
  35. --ion-color-warning-rgb: 255, 196, 9;
  36. --ion-color-warning-contrast: #000000;
  37. --ion-color-warning-contrast-rgb: 0, 0, 0;
  38. --ion-color-warning-shade: #e0ac08;
  39. --ion-color-warning-tint: #ffca22;
  40. /** danger **/
  41. --ion-color-danger: #eb445a;
  42. --ion-color-danger-rgb: 235, 68, 90;
  43. --ion-color-danger-contrast: #ffffff;
  44. --ion-color-danger-contrast-rgb: 255, 255, 255;
  45. --ion-color-danger-shade: #cf3c4f;
  46. --ion-color-danger-tint: #ed576b;
  47. /** dark **/
  48. --ion-color-dark: #222428;
  49. --ion-color-dark-rgb: 34, 36, 40;
  50. --ion-color-dark-contrast: #ffffff;
  51. --ion-color-dark-contrast-rgb: 255, 255, 255;
  52. --ion-color-dark-shade: #1e2023;
  53. --ion-color-dark-tint: #383a3e;
  54. /** medium **/
  55. --ion-color-medium: #92949c;
  56. --ion-color-medium-rgb: 146, 148, 156;
  57. --ion-color-medium-contrast: #ffffff;
  58. --ion-color-medium-contrast-rgb: 255, 255, 255;
  59. --ion-color-medium-shade: #808289;
  60. --ion-color-medium-tint: #9d9fa6;
  61. /** light **/
  62. --ion-color-light: #f4f5f8;
  63. --ion-color-light-rgb: 244, 245, 248;
  64. --ion-color-light-contrast: #000000;
  65. --ion-color-light-contrast-rgb: 0, 0, 0;
  66. --ion-color-light-shade: #d7d8da;
  67. --ion-color-light-tint: #f5f6f9;
  68. /* Custom Colors */
  69. --red: #c35a5b;
  70. --teal: #36b583;
  71. --black: #0d0d0d;
  72. --black-medium: #212121;
  73. --dark-grey: #565656;
  74. --grey: #898989;
  75. --light-grey: #bcbcbc;
  76. --warning: #ce7f01;
  77. --page-header-size: 21px;
  78. }
  79. * {
  80. text-decoration: none;
  81. outline: none;
  82. box-sizing: border-box;
  83. font-family: 'Poppins', sans-serif;
  84. }
  85. h1, h2, h3, h4, h5, h6 {
  86. margin: 0;
  87. font-weight: 700;
  88. }
  89. button {
  90. background-color: transparent;
  91. }
  92. ul {
  93. list-style: none;
  94. padding: 0;
  95. margin: 0;
  96. }