Guest User

Untitled

a guest
May 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.35 KB | None | 0 0
  1. body {
  2.     overflow: auto;
  3.     background-image:url('../images/background2.png');
  4.     background-attachment: scroll;
  5.     background-position: top center;
  6.     background-color: #ffffff;
  7.     font-family: Arial, Helvetica, sans-serif;
  8. }
  9.  
  10. .wrap {
  11.     /*temp*/height: 500px;
  12.     width: 860px;
  13.     margin: auto;
  14.     background-color: #e3e3e3;
  15.     border-top-left-radius: 45px;
  16.     border-bottom-right-radius: 45px;
  17.     /*Border topleft and bottom right fix for every browser*/
  18.     -webkit-border-top-left-radius: 45px;
  19.     -webkit-border-bottom-right-radius: 45px;
  20.     -moz-border-radius-topleft: 45px;
  21.     -moz-border-radius-bottomright: 45px;
  22.     -border-top-left-radius: 45px;
  23.     -border-bottom-right-radius: 45px;
  24. }
  25.  
  26. header {
  27.     background-image: url('../images/banner.png');
  28.     background-repeat: no-repeat;
  29.     height: 100px;
  30. }
  31.  
  32. *{
  33.     margin: 0px;
  34.     padding: 0px;
  35. }
  36.  
  37. /*Menu*/
  38. nav {
  39.     background: #333333;
  40.     float: left;
  41.     width: 100%;
  42. }
  43.     nav ul {
  44.         float: right;
  45.         margin-right: 55px;
  46.     }
  47.     nav li {
  48.         float: left;
  49.         font: Arial, Helvetica, sans-serif;
  50.         list-style: none;
  51.     }
  52.     nav a {
  53.         background: #333 url("images/seperator.gif") bottom right no-repeat;
  54.         color: #e3e3e3;
  55.         display: block;
  56.         float: left;
  57.         margin: 0;
  58.         padding: 8px 12px;
  59.         text-decoration: none;
  60.     }
  61.     nav a:hover {
  62.         background: #d4682a;
  63.         color: #ffffff;
  64.     }
  65.  
  66. h1 {
  67.     padding-left: 20px;
  68. }
  69. p {
  70.     padding-left: 20px;
  71. }
Add Comment
Please, Sign In to add comment