custom.css 553 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. figure img {
  2. display: block;
  3. margin-left: auto;
  4. margin-right: auto;
  5. }
  6. /* Next 2 rules add ability to have paragraph numbers */
  7. .article-content p {
  8. padding-left: 50px;
  9. position: relative;
  10. }
  11. .article-content p:before {
  12. display: block;
  13. position: absolute;
  14. left: 5px;
  15. }
  16. /* Styling of tables */
  17. table {
  18. border-collapse: collapse;
  19. }
  20. table, th, td {
  21. border: 1px solid black;
  22. }
  23. th {
  24. background-color: #4CAF50;
  25. color: white;
  26. }
  27. tr:nth-child(even) {background-color: #f2f2f2;}
  28. h1 {
  29. font-size: 31px;
  30. }
  31. h2 {
  32. font-size: 22px;
  33. }