layout.css 497 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. table {
  2. border-collapse: collapse;
  3. margin-bottom: 10px;
  4. }
  5. th {
  6. background-color: #185886;
  7. color: white;
  8. }
  9. th, td {
  10. text-align: center;
  11. border: 1px solid #ccc;
  12. font-size: 10pt;
  13. }
  14. body {
  15. font-family: 'Ubuntu';
  16. font-size: 10pt;
  17. }
  18. tr:nth-child(2n) {
  19. background-color: #f5f5f5;
  20. }
  21. .abbreviations {
  22. margin-top: 5px;
  23. margin-right: 5px;
  24. float: left;
  25. }
  26. .colwidth {
  27. width: 80px;
  28. }
  29. .training {
  30. color: #185886;
  31. }
  32. .event {
  33. color: green;
  34. }