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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. /*padding: 1rem 0;*/
  30. }
  31. .inputFile:focus + label,
  32. .inputFile + label:hover {
  33. /*background-color: red;*/
  34. width: 44px;
  35. height: 44px;
  36. background: rgba(0, 0, 0, 0.2);
  37. -moz-border-radius: 22px;
  38. -webkit-border-radius: 22px;
  39. border-radius: 22px;
  40. }
  41. .btn-primary {
  42. color: #fff;
  43. background-color: var(--primary);
  44. border-color: var(--caritas-red-accent);
  45. }
  46. .btn-primary:hover {
  47. color: #fff;
  48. background-color: var(--primary);
  49. border-color: var(--caritas-red-accent);
  50. }
  51. .btn-primary.focus, .btn-primary:focus {
  52. color: #fff;
  53. background-color: var(--caritas-red-dark);
  54. border-color: var(--primary);
  55. box-shadow: 0 0 0 .2rem rgb(255 64 88 / 0.5);
  56. }
  57. .btn-primary:not(:disabled):not(.disabled).active,
  58. .btn-primary:not(:disabled):not(.disabled):active,
  59. .show > .btn-primary.dropdown-toggle {
  60. color: #fff;
  61. background-color: var(--caritas-red-deep);
  62. border-color: var(--caritas-red-dark);
  63. }
  64. .text-black {
  65. color: rgba(0,0,0) !important;
  66. }
  67. .bg-primary-color {
  68. background-color: var(--primary);
  69. }
  70. .demo-mat-card {
  71. border-radius:20px;
  72. }
  73. .mat-icon-large {
  74. height: 46px !important;
  75. width: 46px !important;
  76. padding: 0 4px;
  77. }
  78. button.mat-icon-large > i {
  79. height: 48px !important;
  80. width: 48px !important;
  81. font-size: 48px !important;
  82. margin-left: -5px;
  83. display: block;
  84. }
  85. .fullscreen {
  86. width: 100vw;
  87. height: 100vh;
  88. }
  89. .sidebar {
  90. background-color: var(--primary);
  91. }
  92. #blazor-error-ui {
  93. background: lightyellow;
  94. bottom: 0;
  95. box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  96. display: none;
  97. left: 0;
  98. padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  99. position: fixed;
  100. width: 100%;
  101. z-index: 1000;
  102. }
  103. #blazor-error-ui .dismiss {
  104. cursor: pointer;
  105. position: absolute;
  106. right: 0.75rem;
  107. top: 0.5rem;
  108. }