layout.css 432 B

1234567891011121314151617181920212223242526272829303132333435
  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. }