Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.93 KB | None | 0 0
  1. body
  2. {
  3.     background-color:   #cecece;
  4.     font-family:        Arial, Helvetica;
  5. }
  6.  
  7. h1
  8. {
  9.     font-size:          24px;
  10.     font-weight:        bold;
  11. }
  12.  
  13. #wrapper
  14. {
  15.     width:              960px;
  16.     margin:             0 auto;
  17. }
  18.  
  19. #logo
  20. {
  21.     margin-top:         20px;
  22.     width:              309px;
  23.     height:             152px;
  24.     float:              left;
  25.     background-image:   url('logo.png');
  26. }
  27.  
  28. #container
  29. {
  30.     width:              495px;
  31.     height:             100%;
  32.     border-left:        1px solid #000000;
  33.     border-right:       1px solid #000000;
  34.     margin-left:        70px;
  35.     background-color:   #ffffff;
  36.     position:           absolute;
  37.     display:            inline;
  38. }
  39.  
  40. .text
  41. {
  42.     line-height:        1.3em;
  43.     letter-spacing:     1px;
  44.     padding:            2px 5px 5px 5px;
  45. }
  46.  
  47. #menu
  48. {
  49.     clear:              both;
  50.     float:              left;
  51.     text-align:         center;
  52.     width:              309px;
  53.     margin:             15px 0px 0px 0px;
  54.     line-height:        2em;
  55.     letter-spacing:     1px;
  56. }
  57.  
  58. a
  59. {
  60.     color:              #000000;
  61.     text-decoration:    none;
  62.     font-size:          24px;
  63.     font-weight:        bold;
  64. }
  65.  
  66. a:hover
  67. {
  68.     text-decoration:    underline;
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement