Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2013
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.53 KB | None | 0 0
  1. #homepage{
  2.     background-color:  #34BFFA;
  3. }
  4.  
  5. #menu{
  6.     background-color:#1B9EE0;
  7.     position:fixed;
  8.     width:5%;
  9.     left:0%;
  10.     top:0%;
  11.     height:100%;
  12.     border-right:  2px solid black;
  13. }
  14. #menu:hover{
  15.     width:15%;
  16. }
  17.  
  18. .bMenu{
  19.     width:100%;
  20.     height: 50px;
  21.     background-color: #1B9EE0;
  22.     border-bottom: 2px solid black;
  23. }
  24. .bMenu:hover{
  25.     background-color:  #34BFFA;
  26. }
  27.  
  28. .bMenu span{
  29.     font-size: 2em;
  30.     display:none;
  31. }
  32. .bMenu img{
  33.     float:left;
  34. }
  35.  
  36. #menu:hover .bMenu span{
  37.     display:inline;
  38. }
  39.  
  40. #title{
  41.     text-align:  center;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement