Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.08 KB | None | 0 0
  1. @charset "UTF-8";
  2. /* CSS Document */
  3.  
  4. body{
  5.     margin: 0px;
  6.     font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  7. }
  8.  
  9. #page{
  10.     width: 980px;
  11.     background: #d0d0d0;
  12.     left: 50%;
  13.     margin-left: -490px;
  14.     position: relative;
  15. }
  16.  
  17. #header{
  18.     background: green;
  19.     position: relative;
  20.     width: 100%;
  21.     height: 240px;
  22.     margin-bottom: 10px;
  23. }
  24.  
  25. #header img{ width: 180px; position: absolute; left: 40px; top: 50px; }
  26.  
  27. #menu_h{
  28.     margin: 0px;
  29.     padding: 0px;
  30.     list-style: none;
  31.     width: 100%;
  32.     position: absolute;
  33.     bottom: 0px;
  34. }
  35.  
  36. #menu_h li{
  37.     display: inline-block;
  38.     width: 25%;
  39. }
  40.  
  41. #menu_h li a{
  42.     display: block;
  43.     width: 99%;
  44.     padding-top: 6px;
  45.     padding-bottom: 6px;
  46.     background: pink;
  47.     text-align: center;
  48.     text-decoration: none;
  49.     color: black;
  50. }
  51.  
  52. #content{}
  53.  
  54. #intro_container{}
  55.  
  56. #img_container{}
  57.  
  58. #img_container img{}
  59.  
  60. #text_container{}
  61.  
  62. #text_container h2{}
  63.  
  64. #text_container p{}
  65.  
  66. #menu_v{}
  67.  
  68. #menu_v li{}
  69.  
  70. #menu_v li a{}
  71.  
  72. #gallery_container{}
  73.  
  74. #gallery_container h2{}
  75.  
  76. #gallery_container img{}
  77.  
  78. #banner{}
  79.  
  80. #footer{}
  81.  
  82. #footer p{}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement