Advertisement
Guest User

default CSS style

a guest
Aug 20th, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.83 KB | None | 0 0
  1. .Wrapper {
  2.     margin-top: 50px;
  3.     margin-left: auto;
  4.     margin-right: auto;
  5.     width: 980px;
  6.     background-color: #FFF;
  7.     overflow: hidden;
  8. }
  9.  
  10. .MainHeader {
  11.  
  12. }
  13.  
  14. .MainHeader img {
  15.     float: left;
  16.     display: block;
  17. }
  18.  
  19. .NavMenu {
  20.     margin-top: 5px;
  21.     width: 980px;
  22.     z-index: -1;
  23.     background-color: #0099CC;
  24.     text-align: right;
  25. }
  26.  
  27. .NavMenu ul {
  28.     margin: 0px;
  29.     padding: 0px;
  30.     list-style-type: none;
  31.     list-style-image: none;
  32. }
  33.  
  34. .NavMenu li {
  35.     display: inline;
  36.     margin: -2px;
  37. }
  38.  
  39. .FirstButton {
  40.     padding: 5px;
  41.     background-color: #0099CC;
  42.     border-top-left-radius: 10px;
  43.     border-bottom-left-radius: 10px;
  44.     color: #FFF;
  45.     text-decoration: none;
  46. }
  47.  
  48. .FirstButton:hover {
  49.     padding: 5px;
  50.     background-color: #FFF;
  51.     border-top-left-radius: 10px;
  52.     border-bottom-left-radius: 10px;
  53.     color: #0099CC;
  54.     text-decoration: none;
  55. }
  56.  
  57. .Button {
  58.     padding: 5px;
  59.     background-color: #0099CC;
  60.     color: #FFF;
  61.     text-decoration: none;
  62. }
  63.  
  64. .Button:hover {
  65.     padding: 5px;
  66.     background-color: #FFF;
  67.     color: #0099CC;
  68.     text-decoration: none;
  69. }
  70.  
  71. .LastButton {
  72.     margin-right: 20px;
  73.     padding: 5px;
  74.     background-color: #0099CC;
  75.     border-top-right-radius: 10px;
  76.     border-bottom-right-radius: 10px;
  77.     color: #FFF;
  78.     text-decoration: none;
  79. }
  80.  
  81. .LastButton:hover {
  82.     margin-right: 20px;
  83.     padding: 5px;
  84.     background-color: #FFF;
  85.     border-top-right-radius: 10px;
  86.     border-bottom-right-radius: 10px;
  87.     color: #0099CC;
  88.     text-decoration: none;
  89. }
  90.  
  91. .InfoBlock {
  92.     position: relative;
  93.     margin-left: auto;
  94.     width: 200px;
  95.     height: 125px;
  96.     z-index: 99;
  97. }
  98.  
  99. .SideBar {
  100.     margin-top: 10px;
  101.     margin-left: 5px;
  102.     float: left;
  103.     width: 200px;
  104.     border-right: 1px solid;
  105. }
  106.  
  107. .MainContent {
  108.     margin-top: 10px;
  109.     margin-left: 5px;
  110.     float: right;
  111.     width: 769px;
  112. }
  113.  
  114. html,
  115. body {
  116.     margin: 0px;
  117.     padding: 0px;
  118.     background: url('../images/bedge_grunge.png');
  119. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement