blog.css 542 B

123456789101112131415161718192021222324252627282930313233343536
  1. .code {
  2. border: 4px solid #eeeeee;
  3. background: #e0e0e0;
  4. border-radius: 4px;
  5. margin: 0;
  6. overflow: auto;
  7. }
  8. .code ol {
  9. list-style-position: inside;
  10. padding: 0;
  11. margin: 0;
  12. }
  13. .code li {
  14. list-style-position: inside;
  15. background: #eeeeee;
  16. padding: 1px;
  17. }
  18. .code li > div {
  19. display: inline;
  20. }
  21. .code li:nth-child(2n) {
  22. background: #e0e0e0;
  23. }
  24. .image {
  25. padding: 5px;
  26. background: #e0e0e0;
  27. display: inline-block;
  28. text-align: center;
  29. max-width: 100%;
  30. }
  31. .image img {
  32. display: block;
  33. }
  34. .image span {
  35. font-size: 0.8em;
  36. }