Advertisement
Guest User

Untitled

a guest
Oct 25th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.89 KB | None | 0 0
  1. body{
  2.     background-color: black;
  3. }
  4. #Header{
  5.    
  6.     display: block;
  7.     background-color: rgba(100, 200, 100, 0.1);
  8.     border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  9.     position: absolute;
  10.     top: 0em;
  11.     left: 0em;
  12.     width: 100%;
  13.     height: 8em;
  14. }
  15. #Navigation{
  16.     background-color: rgba(255, 255, 255, 0.05);
  17.     display: block;
  18.     position: relative;
  19.     margin-left: auto;
  20.     margin-right: auto;
  21.     top: 12em;
  22.     border-bottom: 1px solid white;
  23.     height: 4em;
  24.     width: 50%;
  25. }
  26. .NavButton{
  27.     display: inline-block;
  28.     margin-left: auto;
  29.     margin-right: auto;
  30.     background-color: rgba(100, 200, 100, 0);
  31.     width: 20%;
  32.     height: 100%;
  33.     color: white;
  34. }
  35. .NavButton:hover{
  36.     background-color: rgba(100, 200, 100, 1);
  37. }
  38. #logo{
  39.     display: block;
  40.     position: relative;
  41.     margin-left: auto;
  42.     margin-right: auto;
  43.     height: 100%;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement