Advertisement
Guest User

styles.css

a guest
Aug 14th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.87 KB | None | 0 0
  1. /* GENERAL */
  2.  
  3. *
  4. {
  5.     margin: 0;
  6.     padding: 0;
  7. }
  8. body
  9. {
  10.     font-family: Arial,sans-serif;
  11.     font-size: 15px;
  12. }
  13. h1, h2, h3, h4
  14. {
  15.     color: #444;
  16. }
  17. h1
  18. {
  19.     font-family: "Crete Round", serif;
  20.     font-size: 45px;
  21.        
  22. }
  23. h2
  24. {
  25.     font-size: 55px;
  26. }
  27. h3
  28. {
  29.     font-size: 30px
  30. }
  31. h4
  32. {
  33.     font-size: 24px;
  34. }
  35. p
  36. {
  37.     line-height: 20px;
  38.     color:#777;
  39. }
  40. ul
  41. {
  42.     list-style: none;
  43. }
  44. a
  45. {
  46.     text-decoration: none;
  47.     color: #444;
  48. }
  49. small
  50. {
  51.     font-size: 13px;
  52.     font-style: italic;
  53. }
  54.  
  55.  
  56. .wrapper
  57. {
  58.     width: 940px;
  59.     margin: 0 auto;
  60.     padding: 0 10px;
  61. }
  62. .orange
  63. {
  64.     color: #ff7a00;
  65. }
  66. .clear
  67. {
  68.     clear: both;
  69. }
  70. /* HEADER */
  71.  
  72. header
  73. {
  74.     height: 120px;
  75. }
  76.  
  77. header h1
  78. {
  79.     float: left;
  80.     margin-top: 32px;
  81. }
  82. header nav
  83. {
  84.     float: right;
  85.     margin-top: 50px;
  86. }
  87.  
  88. header nav ul li
  89. {
  90.     display: inline-block;
  91. }
  92. header nav ul li a
  93. {
  94.     text-transform: uppercase;
  95.     font-weight: bold;
  96.     margin-right: 20px
  97. }
  98.  
  99. /* Main Image */
  100.  
  101. #main-image
  102. {
  103.     height: 580px;
  104.     background: url("images/main.jpg") center;
  105. }
  106.  
  107. #main-image h2
  108. {
  109.     font-weight: normal;
  110.     text-transform: uppercase;
  111.     text-align: center;
  112.     padding: 150px 0 40px 0;
  113.     margin-bottom: 20px;
  114. }
  115.  
  116. .button-1
  117. {
  118.     width: 120px;
  119.     height: 50px;
  120.     display: block;
  121.     background: #ff7a00;
  122.     color: #fff;
  123.     font-size: 20px;
  124.     margin: 0 auto;
  125.     line-height: 50px;
  126.     text-align: center;
  127.     border-radius: 3px;
  128. }
  129. .button-1:hover
  130. {
  131.     background: #02b8dd;
  132. }
  133.  
  134. /* STEPS */
  135. #steps ul
  136. {
  137.     margin: 80px 0;
  138. }
  139.  
  140. #steps ul li
  141. {
  142.     width:300px;
  143.     float: left;
  144.     padding-top: 140px;
  145.     text-align: center;
  146.     margin-right: 10px;
  147.  
  148. }
  149. #steps h4
  150. {
  151.     text-transform: uppercase;
  152.     margin-bottom: 20px;
  153. }
  154. #steps p
  155. {
  156.     margin-bottom: 20px;
  157. }
  158. #step-1
  159. {
  160.     background: url("images/steps-icon-1.png") no-repeat top center;
  161. }
  162. #step-2
  163. {
  164.     background: url("images/steps-icon-2.png") no-repeat top center;
  165. }
  166. #step-3
  167. {
  168.     background: url("images/steps-icon-3.png") no-repeat top center;
  169. }
  170.  
  171. /*Possibilities */
  172.  
  173. #possibilities
  174. {
  175.     background-color: #efefef;
  176.     padding: 60px 0;
  177. }
  178. #possibilities article
  179. {
  180.     width: 460px;
  181.     height: 270px;
  182.     float: left;
  183.     border-radius: 10px;
  184. }
  185. #possibilities article:first-child
  186. {
  187.     margin-right: 20px;
  188. }
  189. .overlay
  190. {
  191.     background: rgba(255,255,255, 0.95);
  192.     height: 100%;
  193.     width: 190px;
  194.     padding: 20px;
  195.     border-radius: 10px 0 0 10px;
  196.     text-align: center;
  197.     box-sizing: border-box;
  198. }
  199. article h4
  200. {
  201.     border-bottom: 1px solid #ddd;
  202.     padding-bottom: 20px;
  203.     text-transform: uppercase;
  204.     margin-bottom: 20px;
  205.     text-align: center;
  206. }
  207.  
  208. #possibilities p
  209. {
  210.     text-align: center;
  211.     margin-bottom: 20px;
  212. }
  213. .button-2
  214. {
  215.     color: #fff;
  216.     background-color: #ff7a00;
  217.     padding: 6px 20px;
  218.     border-radius: 3px;
  219. }
  220. .button-2:hover
  221. {
  222.     color: #fff;
  223.     background-color: #02b8dd;
  224. }
  225.  
  226. /* CONTACT */
  227.  
  228. #contact
  229. {
  230.     padding: 60px 0;
  231.     text-align: center;
  232. }
  233. #contact h3
  234. {
  235.     text-transform: uppercase;
  236.     margin-bottom: 20px;
  237. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement