Advertisement
Guest User

CSS

a guest
Apr 24th, 2015
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.63 KB | None | 0 0
  1. body {
  2.     padding: 0;
  3.     margin: 0;
  4.     background-color: #E6E6E6;
  5. }
  6. #topBarContainer {
  7.     width: 100%;
  8.     margin: 0;
  9.     padding: 0;
  10.     background-color: #000;
  11.     position: fixed;
  12. }
  13. #topBar {
  14.     width: 80%;
  15.     margin: 0 10%;
  16.     height: 75px;
  17.     background-color: #000;
  18.     text-align: center;
  19. }
  20. #topBarTitle {
  21.     color: #FFF;
  22.     font-size: 50px;
  23.     font-family: Arial;
  24.     line-height: 1.5em;
  25. }
  26. #topBarNavigation {
  27.     width: 40%;
  28.     height: 75px;
  29.     float: left;
  30.     text-align: center;
  31.     display: none;
  32. }
  33. #bodyContainer {
  34.     width: 100%;
  35.     height: 50%;
  36. }
  37. #mainBodyContent {
  38.     width: 80%;
  39.     height: 50%;
  40.     margin: 0 10%;
  41.     padding: 0;
  42.     background-color: white;
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement