Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. *
  2. {
  3. margin: 0;
  4. padding: 0;
  5. border: 0;
  6. }
  7.  
  8. body
  9. {
  10. background-color: rgb(220, 220, 220);
  11. }
  12.  
  13. #wrapper
  14. {
  15. width: 900px;
  16. margin-left: auto;
  17. margin-right: auto;
  18. margin-top: 100px;
  19. }
  20.  
  21. #content
  22. {
  23. clear: both;
  24. background-color: rgb(200, 200, 200);
  25. border: 1px black solid;
  26. padding: 5px;
  27. }
  28.  
  29. #title
  30. {
  31. float: left;
  32. font-family: Arial;
  33. font-size: 32px;
  34. }
  35.  
  36. #menu
  37. {
  38. float: right;
  39. margin-right: 5px;
  40. vertical-align: bottom;
  41.  
  42. height: 40px;
  43.  
  44. position: relative;
  45. }
  46.  
  47. #menu a
  48. {
  49. color: black;
  50. text-decoration: none;
  51. }
  52.  
  53. .menu_item
  54. {
  55. display: inline-block;
  56. height: 25px;
  57.  
  58. position: absolute;
  59. bottom: 0px;
  60. }
  61.  
  62. .menu_text
  63. {
  64. display: inline-block;
  65. padding-top: 3px;
  66. padding-left: 7px;
  67. padding-right: 7px;
  68. height: 21px;
  69.  
  70. border-top: 1px solid black;
  71. border-left: 1px solid black;
  72. border-right: 1px solid black;
  73. border-bottom: 1px solid black;
  74. background-color: rgb(180, 180, 180);
  75. }
  76.  
  77. .active_menu_text
  78. {
  79. display: inline-block;
  80. padding-top: 3px;
  81. padding-left: 7px;
  82. padding-right: 7px;
  83. height: 22px;
  84.  
  85.  
  86. border-top: 1px solid black;
  87. border-left: 1px solid black;
  88. border-right: 1px solid black;
  89. background-color: rgb(200, 200, 200);
  90. }
  91.  
  92. .submenus
  93. {
  94. position: absolute;
  95. top: 25px;
  96.  
  97. display: none;
  98.  
  99. background-color: rgb(190, 190, 190);
  100. padding-left: 7px;
  101. padding-right: 7px;
  102. border: 1px solid black;
  103. }
  104.  
  105. .submenu_item
  106. {
  107. padding: 2px;
  108. }
  109.  
  110. h1
  111. {
  112. text-decoration: underline;
  113. font-size: 28px;
  114. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement