divers.css 564 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. }
  10. th, td {
  11. padding: 2px;
  12. border: 1px solid black;
  13. --text-color: lightgrey;
  14. }
  15. .all-choices {
  16. background-color: #28a745;
  17. color: #8fd19e;
  18. }
  19. .half-choices {
  20. background-color: #8fd19e;
  21. color: grey;
  22. }
  23. .last-choice {
  24. background-color: #ffdf7e;
  25. color: grey;
  26. }
  27. .no-choice {
  28. background-color: #ed969e;
  29. }
  30. .never-available {
  31. background-color: lightgrey;
  32. }