styles.scss 785 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @import '../../bootstrap-theme/scss/bootstrap.scss';
  2. .pointer {
  3. cursor: pointer;
  4. }
  5. .bg-avg {
  6. background-color: #ffe69c !important;
  7. }
  8. .bg-peak {
  9. background-color: #cce7ff !important;
  10. }
  11. .bg-max {
  12. background-color: #e3a3a9 !important;
  13. }
  14. .bg-progress {
  15. background-color: $progress-bg !important;
  16. }
  17. .text-avg {
  18. color: #cc9a06 !important;
  19. }
  20. .text-peak {
  21. color: #005299 !important;
  22. }
  23. .text-max {
  24. color: #941320 !important;
  25. }
  26. .check-disjunction,
  27. .check-conjunction {
  28. &.d-grid {
  29. grid-template-columns: 30px 1fr;
  30. .label-upright-vertical {
  31. writing-mode: vertical-lr;
  32. text-orientation: upright;
  33. text-align: center;
  34. }
  35. .input-group .input-group-text {
  36. width: 31px;
  37. min-height: 48px;
  38. // font-size: 0.75rem;
  39. }
  40. }
  41. }