Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
616
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. HTML:
  2.  
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
  7. <meta http-equiv="content-type" content="text/html; charset=utf-8">
  8. <link rel="stylesheet" type="text/css" href="css/basic.css">
  9. <link rel="stylesheet" type="text/css" href="css/layout.css">
  10. <title>ICG Extreme Team</title>
  11. </head>
  12. <body>
  13. <div id="wrapper">
  14. <header>
  15. <div id="icg">ICG EXTREME TEAM</div>
  16. </header>
  17. <nav id="left_menu">
  18. <ul>
  19. <li><a href="#">ROPEJUMPING</li>
  20. <li><a href="#">О НАС</li>
  21. <li><a href="#">НОВОСТИ</li>
  22. <li><a href="#">ФОТО</li>
  23. <li><a href="#">ВИДЕО</li>
  24. <li><a href="#">НАШИ ДРУЗЬЯ</li>
  25. </ul>
  26. </nav>
  27. <section id="middle">
  28. <aside id="side_right">
  29. Right
  30. </aside>
  31. <div id="content">
  32. Content
  33. </div>
  34. </section>
  35. </div>
  36. </body>
  37. </html>
  38.  
  39.  
  40.  
  41. CSS:
  42.  
  43. /*Common ---------------------------------------------------------------------*/
  44. #wrapper{
  45. min-width: 960px;
  46. max-width: 1280px;
  47. margin: 0 auto;
  48. }
  49. /*Header ---------------------------------------------------------------------*/
  50. header{
  51. position: relative;
  52. height: 200px;
  53. background-color: #2b7f41;
  54. }
  55. #icg{
  56. position: relative;
  57. text-align: left;
  58. font-size: 28px;
  59. font-family: sans-serif;
  60. color: #fff;
  61. font-weight: bold;
  62. top: 40px;
  63. left: 120px;
  64. width: 627px;
  65. height: 43px;
  66. }
  67. /*Left menu ---------------------------------------------------------------------*/
  68. #left_menu{
  69. height: 267px;
  70. width: 200px;
  71. background-color: #fff;
  72. border-top: solid 1px #fff;
  73. }
  74. #left_menu ul{
  75. list-style-type: none;
  76. }
  77. #left_menu ul li{
  78. list-style-type: none;
  79. height: 45px;
  80. border-right: solid 1px #2b7f41;
  81. }
  82. #left_menu ul li a{
  83. display: block;
  84. line-height: 25px;
  85. padding: 0 20px;
  86. color: #2b7f41;
  87. text-decoration: none !important;
  88. }
  89. #left_menu ul li a:hover{
  90. background-color: #c5c5c5;
  91. }
  92. /*Middle ---------------------------------------------------------------------*/
  93. #middle{
  94. overflow: hidden;
  95. }
  96. #side_right{
  97. float: right;
  98. width: 225px;
  99. padding: 12px;
  100. border-left: solid 1px #2b7f41;
  101. text-align: justify;
  102. padding-bottom: 30000px;
  103. margin-bottom: -30000px;
  104. }
  105. #content {
  106. padding: 12px;
  107. margin: 0 250px;
  108. text-align: justify;
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement