You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 578B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. body {
  2. font-family: "Ubuntu", sans-serif;
  3. background-color: #242323;
  4. color: white;
  5. }
  6. @media screen and (min-width: 52em) {
  7. body {
  8. max-width: 50em;
  9. margin-left: auto;
  10. margin-right: auto;
  11. }
  12. }
  13. a {
  14. color: red;
  15. }
  16. h1, h2, h3, h4 {
  17. color: #b00;
  18. }
  19. h1 {
  20. border-bottom: 2px solid white;
  21. }
  22. h2 {
  23. border-bottom: 1px solid #999;
  24. }
  25. h3 {
  26. border-bottom: 1px solid #aaa;
  27. }
  28. h4 {
  29. border-bottom: 1px dotted #aaa;
  30. }
  31. img.iconthumb {
  32. margin: 0.5em;
  33. border: 2px solid #222;
  34. border-radius: 0.5em;
  35. width: 30%;
  36. }