PWA Fundvelo der Caritas.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

app.css 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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: baseline;
  37. justify-content: center;
  38. display: inline-flex;
  39. }
  40. .navmenu-mat-ripple {
  41. margin-left: 0.5em;
  42. margin-right: 0.5em;
  43. border-radius: 6px;
  44. }
  45. .btn-primary {
  46. color: #fff;
  47. background-color: var(--primary);
  48. border-color: var(--caritas-red-accent);
  49. }
  50. .btn-primary:hover {
  51. color: #fff;
  52. background-color: var(--primary);
  53. border-color: var(--caritas-red-accent);
  54. }
  55. .btn-primary.focus, .btn-primary:focus {
  56. color: #fff;
  57. background-color: var(--caritas-red-dark);
  58. border-color: var(--primary);
  59. box-shadow: 0 0 0 .2rem rgb(255 64 88 / 0.5);
  60. }
  61. .btn-primary:not(:disabled):not(.disabled).active,
  62. .btn-primary:not(:disabled):not(.disabled):active,
  63. .show > .btn-primary.dropdown-toggle {
  64. color: #fff;
  65. background-color: var(--caritas-red-deep);
  66. border-color: var(--caritas-red-dark);
  67. }
  68. .text-black {
  69. color: rgba(0,0,0) !important;
  70. }
  71. .bg-primary-color {
  72. background-color: var(--primary);
  73. }
  74. .fv-mat-card {
  75. border-radius:20px;
  76. }
  77. .mat-icon-large {
  78. height: 46px !important;
  79. width: 46px !important;
  80. padding: 0 4px;
  81. }
  82. button.mat-icon-large > i {
  83. height: 48px !important;
  84. width: 48px !important;
  85. font-size: 48px !important;
  86. margin-left: -5px;
  87. display: block;
  88. }
  89. .fullscreen {
  90. width: 100vw;
  91. height: 100vh;
  92. }
  93. .sidebar {
  94. background-color: var(--primary);
  95. }
  96. #blazor-error-ui {
  97. background: lightyellow;
  98. bottom: 0;
  99. box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  100. display: none;
  101. left: 0;
  102. padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  103. position: fixed;
  104. width: 100%;
  105. z-index: 1000;
  106. }
  107. #blazor-error-ui .dismiss {
  108. cursor: pointer;
  109. position: absolute;
  110. right: 0.75rem;
  111. top: 0.5rem;
  112. }
  113. .navBar-title {
  114. padding-left: 0px;
  115. font-size: 90%;
  116. font-weight: 500;
  117. white-space: normal;
  118. line-height: inherit;
  119. }
  120. div.mat-card-media div.mdc-circular-progress {
  121. margin: 0;
  122. position: absolute;
  123. top: 50%;
  124. left: 50%;
  125. -ms-transform: translate(-50%, -50%);
  126. transform: translate(-50%, -50%);
  127. }