Guest User

Untitled

a guest
May 26th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. pre {
  2. background: #303030;
  3. color: #f1f1f1;
  4. padding: 10px 16px;
  5. border-radius: 2px;
  6. border-top: 4px solid #dd0303;
  7. -moz-box-shadow: inset 0 0 10px #000;
  8. box-shadow: inset 0 0 10px #000;
  9. counter-reset: line;
  10. }
  11.  
  12. pre span {
  13. display: block;
  14. line-height: 1.5rem;
  15. }
  16.  
  17. pre span:before {
  18. counter-increment: line;
  19. content: counter(line);
  20. display: inline-block;
  21. border-right: 1px solid #ddd;
  22. padding: 0 .5em;
  23. margin-right: .5em;
  24. color: #888;
  25. width: 30px;
  26. }
Add Comment
Please, Sign In to add comment