Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. ul li.listed:before {
  2. content: '';
  3. display: inline-block;
  4. height: 100px;
  5. width: 100px;
  6. position: relative;
  7. background: #fff;
  8. top: -51px;
  9. border-radius: 50%;
  10. box-shadow: 15px 11px 0px rgba(0,0,0,1);
  11. right: 45px;
  12. }
  13.  
  14. ol li.listed:before {
  15. content: counter(item);
  16. display: inline-block;
  17. position: relative;
  18. top: -12px;
  19. border-radius: 50%;
  20. box-shadow: 15px 18px -1px rgba(0,0,0,1);
  21. right: 45px;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement