Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. .tabs{
  2. display:inline-block;
  3. }
  4. .tabs > div{
  5. padding-top:10px;
  6. }
  7. .tabs ul{
  8. margin:0px;
  9. padding:0px;
  10. }
  11. .tabs ul:after{
  12. content:"";
  13. display:block;
  14. clear:both;
  15. height:5px;
  16. background:#46c765;
  17. }
  18. .tabs ul li{
  19. margin:0px;
  20. padding:0px;
  21. cursor:pointer;
  22. display:block;
  23. float:left;
  24. padding:10px 15px;
  25. background:#e9eaeb;
  26. color:#707070;
  27. }
  28. .tabs ul li.active, .tabs ul li.active:hover{
  29. background:#46c765;
  30. color:#fff;
  31. }
  32. .tabs ul li:hover{
  33. background:#d6d6d7;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement