PWA Fundvelo der Caritas.
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.

app.css 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. :root {
  2. --caritas-red: #db001b;
  3. --caritas-red-accent: #FF4081;
  4. --caritas-red-dark: #d0001a;
  5. --caritas-red-deep: #bf0018;
  6. --primary: var(--caritas-red);
  7. --mdc-theme-primary: var(--primary);
  8. --mdc-theme-secondary: var(--secondary);
  9. --mdc-theme-error: var(--danger);
  10. }
  11. a {
  12. color: var(--primary);
  13. }
  14. a:hover {
  15. color: var(--caritas-red-accent);
  16. }
  17. .inputFile {
  18. width: 0.1px;
  19. height: 0.1px;
  20. opacity: 0;
  21. overflow: hidden;
  22. position: absolute;
  23. z-index: -1;
  24. }
  25. .inputFile + label {
  26. cursor: pointer;
  27. width: 100%;
  28. text-align: center;
  29. }
  30. .inputfile-mat-ripple {
  31. width: 48px;
  32. height: 48px;
  33. -moz-border-radius: 24px;
  34. -webkit-border-radius: 24px;
  35. border-radius: 24px;
  36. align-items: center;
  37. justify-content: center;
  38. display: inline-flex;
  39. }
  40. .btn-primary {
  41. color: #fff;
  42. background-color: var(--primary);
  43. border-color: var(--caritas-red-accent);
  44. }
  45. .btn-primary:hover {
  46. color: #fff;
  47. background-color: var(--primary);
  48. border-color: var(--caritas-red-accent);
  49. }
  50. .btn-primary.focus, .btn-primary:focus {
  51. color: #fff;
  52. background-color: var(--caritas-red-dark);
  53. border-color: var(--primary);
  54. box-shadow: 0 0 0 .2rem rgb(255 64 88 / 0.5);
  55. }
  56. .btn-primary:not(:disabled):not(.disabled).active,
  57. .btn-primary:not(:disabled):not(.disabled):active,
  58. .show > .btn-primary.dropdown-toggle {
  59. color: #fff;
  60. background-color: var(--caritas-red-deep);
  61. border-color: var(--caritas-red-dark);
  62. }
  63. .text-black {
  64. color: rgba(0,0,0) !important;
  65. }
  66. .bg-primary-color {
  67. background-color: var(--primary);
  68. }
  69. .demo-mat-card {
  70. border-radius:20px;
  71. }
  72. .mat-icon-large {
  73. height: 46px !important;
  74. width: 46px !important;
  75. padding: 0 4px;
  76. }
  77. button.mat-icon-large > i {
  78. height: 48px !important;
  79. width: 48px !important;
  80. font-size: 48px !important;
  81. margin-left: -5px;
  82. display: block;
  83. }
  84. .fullscreen {
  85. width: 100vw;
  86. height: 100vh;
  87. }
  88. .sidebar {
  89. background-color: var(--primary);
  90. }
  91. #blazor-error-ui {
  92. background: lightyellow;
  93. bottom: 0;
  94. box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  95. display: none;
  96. left: 0;
  97. padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  98. position: fixed;
  99. width: 100%;
  100. z-index: 1000;
  101. }
  102. #blazor-error-ui .dismiss {
  103. cursor: pointer;
  104. position: absolute;
  105. right: 0.75rem;
  106. top: 0.5rem;
  107. }