Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <div class="left">
  2. <div class="item">
  3. <span class="glyphicon glyphicon-th-large"><img src="assets/icon/sidebar/dashboard.png"></span>
  4.  
  5. </div>
  6. <div class="item active">
  7. <span class="glyphicon glyphicon-th-list"></span>
  8. </div>
  9. <div class="item">
  10. <span class="glyphicon glyphicon-log-out"></span>
  11. </div>
  12.  
  13. .left, .right {
  14. float:left;
  15. height:100vh;
  16. }
  17.  
  18. .left {
  19. background: #3B3B3B;
  20. display: inline-block;
  21. white-space: nowrap;
  22. width: 50px;
  23. transition: width 1s ;
  24. }
  25.  
  26. .left:hover {
  27. width: 170px;
  28. }
  29.  
  30. .item:hover {
  31. background-color:#ccc;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement