Guest User

Untitled

a guest
Jan 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. /* Lists */
  2.  
  3. ul, ol {list-style: none;}
  4. ul, ol {margin: 5px 0; display: block;}
  5. li {padding: 5px; }
  6.  
  7. ul.list-shadow > li
  8. {
  9. -moz-box-shadow: 1px 1px 6px #888;
  10. -webkit-box-shadow: 1px 1px 6px #888;
  11. box-shadow: 1px 1px 6px #888;
  12. }
  13.  
  14. .list-basic > li:first-child
  15. {
  16.  
  17. -moz-border-radius: 4px 4px 0 0;
  18. -webkit-border-radius: 4px 4px 0 0;
  19. border-radius: 4px 4px 0 0;
  20.  
  21. -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
  22. }
  23. .list-basic > li:last-child
  24. {
  25.  
  26. -moz-border-radius: 0 0 4px 4px;
  27. -webkit-border-radius: 0 0 4px 4px;
  28. border-radius: 0 0 4px 4px;
  29.  
  30. -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
  31. }
  32. .list-basic > li:nth-child(odd) {background-color:#efefef;}
Add Comment
Please, Sign In to add comment