blog.css 511 B

1234567891011121314151617181920212223242526272829303132333435
  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. background: #eeeeee;
  15. padding: 1px;
  16. }
  17. .code li > div {
  18. display: inline;
  19. }
  20. .code li:nth-child(2n) {
  21. background: #e0e0e0;
  22. }
  23. .image {
  24. padding: 5px;
  25. background: #e0e0e0;
  26. display: inline-block;
  27. text-align: center;
  28. max-width: 100%;
  29. }
  30. .image img {
  31. display: block;
  32. }
  33. .image span {
  34. font-size: 0.8em;
  35. }