Guest User

Untitled

a guest
Oct 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. /** by Gcyrillus
  2. * bread-crumbs, where you are and what next
  3. */
  4. html {
  5. background: #f06;
  6. background: linear-gradient(45deg, #f06, yellow);
  7. min-height: 100%;
  8. }
  9. ul {background:rgba(0,0,0,0.1);list-style-type:none;font-variant:small-caps;font-size:1.5em;color:white;
  10. text-shadow:0 1px 2px black;}
  11. ul li {display:inline-block;padding:2px 1em 2px 1.5em;background:#789;border:dashed 1px;
  12. box-shadow:0 0 0 2px #789, 3px 3px 3px black;
  13. ;border-right:0;
  14. position:relative;}
  15.  
  16. ul li:after {
  17. content:'';
  18. position:absolute;
  19. transform:rotate(52deg) skew(0,-15deg);
  20. z-index:1;
  21. box-shadow:0 1px 0 2px #789, 3px -1px 2px black;
  22. right:-0.75em;
  23. height:1.2em;
  24. width:1.2em;
  25. background:#789;
  26. display:inline-block;
  27. border-right:dashed 1px;
  28. border-top: dashed 1px;
  29. }
  30. ul li + li {left:-9999px;}
  31. li:focus {left:0;}
  32. li:focus + li {left:0px;}
Add Comment
Please, Sign In to add comment