divers.css 607 B

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