divers.css 590 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. body {
  2. margin: 0 2% 0 2%;
  3. }
  4. /* Tableau */
  5. table {
  6. font-size: 13px;
  7. text-align: center;
  8. border-collapse: collapse;
  9. white-space: nowrap;
  10. }
  11. th, td {
  12. padding: 2px;
  13. border: 1px solid black;
  14. --text-color: lightgrey;
  15. }
  16. .all-choices {
  17. background-color: #28a745;
  18. color: #8fd19e;
  19. }
  20. .half-choices {
  21. background-color: #8fd19e;
  22. color: grey;
  23. }
  24. .last-choice {
  25. background-color: #ffdf7e;
  26. color: grey;
  27. }
  28. .no-choice {
  29. background-color: #ed969e;
  30. }
  31. .never-available {
  32. background-color: lightgrey;
  33. }