The blog.
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.
 
 
 
 

26 lines
447 B

  1. ul.tags {
  2. list-style-type: none;
  3. }
  4. ul.tags li {
  5. padding-left: .5em;
  6. padding-right: .5em;
  7. display: inline-block;
  8. }
  9. pre.showlines {
  10. white-space: pre-wrap;
  11. }
  12. pre.showlines::before {
  13. counter-reset: listing;
  14. }
  15. pre.showlines code {
  16. counter-increment: listing;
  17. }
  18. pre.showlines code::before {
  19. content: counter(listing) ". ";
  20. display: inline-block;
  21. width: 3em; /* now works */
  22. text-align: right; /* now works */
  23. }