Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. @charset "utf-8";
  2. /* CSS Document */
  3. #wrap
  4. {
  5. margin: 0 auto;
  6. width: 1024px;
  7. }
  8.  
  9. body
  10. {
  11. position: relative;
  12. background-color:#DDDDDD;
  13. margin: 0;
  14. padding: 0;
  15. font-family: "Times New Roman", serif;
  16. min-height: 100%;
  17. }
  18.  
  19. .ul_nav
  20. {
  21. list-style-type: none;
  22. margin: 0;
  23. padding: 0;
  24. overflow: hidden;
  25. background-color: #333;
  26. }
  27.  
  28. .ul_nav >li
  29. {
  30. border-left: 1px solid #DDDDDD;
  31. float: right;
  32. }
  33.  
  34. .ul_nav >li>a
  35. {
  36. display: block;
  37. color: white;
  38. text-align: center;
  39. padding: 19px 16px;
  40. text-decoration: none;
  41. }
  42.  
  43. .ul_nav >li>a:hover:not(.active)
  44. {
  45. background-color: #111;
  46. }
  47.  
  48. .active
  49. {
  50. background-color: #4CAF50;
  51. }
  52.  
  53. .active:hover
  54. {
  55. background-color: #285C2A;
  56. }
  57.  
  58. .logo
  59. {
  60. display: block;
  61. width: auto;
  62. height: 50px;
  63. float: left;
  64. padding-left: 20px;
  65. }
  66. .logo_image
  67. {
  68. width:auto;
  69. height:50px;
  70. padding: 2px 0 0 0;
  71. }
  72.  
  73. .logo_image:hover{
  74.  
  75. opacity: 0.7;
  76. }
  77.  
  78. .banner
  79. {
  80. position: relative;
  81. top: 30px;
  82. width: 1024px;
  83. }
  84.  
  85. .banner_image
  86. {
  87. border: 5px solid black;
  88. background-color: #000000;
  89. display: block;
  90. align-items: center;
  91. width: 801px;
  92. height: auto;
  93. margin-left: auto;
  94. margin-right: auto;
  95. }
  96.  
  97. .heading
  98. {
  99. font-weight: bold;
  100. text-align: center;
  101. font-size: 25px;
  102. color:black;
  103. margin: 100px 10px 50px 10px;
  104. }
  105.  
  106. .service
  107. {
  108.  
  109. width: 1024px;
  110. margin: 0 auto;
  111. }
  112.  
  113. .service_1
  114. {
  115. width: 300px;
  116. border: 3px solid #333;
  117. margin: 20px 12px;
  118. padding: 0 5px;
  119. float:left;
  120.  
  121. }
  122.  
  123. .service_1>h1
  124. {
  125. color: white;
  126. font-size: 16px;
  127. font-weight: bold;
  128. background-color: #333;
  129. padding: 10px 0;
  130. margin: 0 -6px;
  131. }
  132.  
  133. .service1>p
  134. {
  135. font-size: 14px;
  136. padding: auto;
  137. }
  138.  
  139. .service_image
  140. {
  141. width: 150px;
  142. height: auto;
  143. }
  144.  
  145. .service_image:hover
  146. {
  147. opacity: 0.7;
  148. }
  149. .social_border
  150. {
  151. position: relative;
  152. left:30px;
  153. width: 170px;
  154. height: auto;
  155. color: #dddddd;
  156. background-color:#4D4D4D;
  157. margin-top: 400px;
  158. margin-bottom: 50px;
  159. border-radius: 10%;
  160. }
  161.  
  162. .social_link
  163. {
  164. text-align: center;
  165. border-bottom: 1px solid #dddddd;
  166. width: 160px;
  167. margin-top: 250px;
  168. font-size: 20px;
  169. font-weight: bold;
  170.  
  171. }
  172.  
  173. .social_icon
  174. {
  175. margin: 10px 0 5px 0;
  176. width: 40px;
  177. padding: 0 5px;
  178. }
  179.  
  180. .social_icon:hover
  181. {
  182. opacity: 0.7;
  183. }
  184.  
  185. #footer
  186. {
  187. width: inherit;
  188. position: absolute;
  189. font-style: italic;
  190. color: #dddddd;
  191. text-align: center;
  192. background-color: #333;
  193. /*padding: 1rem;*/
  194. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement