custom.css 342 B

123456789101112131415161718192021222324252627282930
  1. figure img {
  2. display: block;
  3. margin-left: auto;
  4. margin-right: auto;
  5. }
  6. /* Styling of tables */
  7. table {
  8. border-collapse: collapse;
  9. }
  10. table, th, td {
  11. border: 1px solid black;
  12. }
  13. th {
  14. background-color: #4CAF50;
  15. color: white;
  16. }
  17. tr:nth-child(even) {background-color: #f2f2f2;}
  18. h1 {
  19. font-size: 31px;
  20. }
  21. h2 {
  22. font-size: 22px;
  23. }