RyanEarnshaw

Untitled

Feb 24th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.57 KB | None | 0 0
  1. *, html {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. html, body {
  7. font-family: sans-serif;
  8. background-color: #000000;
  9. }
  10.  
  11. .header {
  12. position: relative;
  13. display: inline-block;
  14. height: 80px;
  15. width: 100%;
  16. background-color: #000000;
  17. }
  18.  
  19. .header img {
  20. position: absolute;
  21. max-height: 90%;
  22. max-width: 100%;
  23. top: 50%;
  24. left: 50%;
  25. transform: translate(-50%, -50%);
  26. }
  27.  
  28. .section {
  29. position: relative;
  30. display: inline-block;
  31. width: 100%;
  32. text-align: center;
  33. background-color: #000000;
  34. }
  35. .section .innercontainer {
  36. position: relative;
  37. display: inline-block;
  38. width: 100%;
  39. }
  40. .section .innercontainer .sectionheading {
  41. position: relative;
  42. display: inline-block;
  43. width: 100%;
  44. padding: 10px 0;
  45. }
  46. .section .innercontainer .sectionheading h1 {
  47. position: relative;
  48. display: inline-block;
  49. width: auto;
  50. color: #f3bc15;
  51. font-size: 60px;
  52. font-family: sans-serif;
  53. font-weight: 100;
  54. vertical-align: top;
  55. margin: 0 5%;
  56. margin-top: 10px;
  57. border-bottom: 2px solid #f3bc15;
  58. }
  59. .section .innercontainer .sectionheading img {
  60. position: relative;
  61. display: inline-block;
  62. max-width: 50px;
  63. max-height: 200px;
  64. }
  65. .section .innercontainer .formholder {
  66. position: relative;
  67. display: inline-block;
  68. width: 100%;
  69. max-width: 700px;
  70. height: 600px;
  71. overflow: hidden;
  72. }
  73. .section .innercontainer .formholder .form {
  74. position: absolute;
  75. display: inline-block;
  76. width: 100%;
  77. }
  78. .section .innercontainer .formholder h1 {
  79. position: relative;
  80. display: inline-block;
  81. width: 100%;
  82. color: #f3bc15;
  83. font-size: 30px;
  84. font-family: sans-serif;
  85. font-weight: 100;
  86. margin: 50px 0px 30px 0;
  87. }
  88.  
  89. .section .innercontainer .formholder .minus200 { top: 0; left: -200%; }
  90. .section .innercontainer .formholder .minus100 { top: 0; left: -100%; }
  91. .section .innercontainer .formholder .normal { top: 0; left: 0; }
  92. .section .innercontainer .formholder .plus100 { top: 0; left: 100%; }
  93. .section .innercontainer .formholder .plus200 { top: 0; left: 200%; }
  94.  
  95. .section .innercontainer input {
  96. position: relative;
  97. display: inline-block;
  98. font-size: 16px;
  99. font-family: sans-serif;
  100. font-weight: bold;
  101. color: #f3bc15;
  102. padding: 15px;
  103. border: 2px solid #f3bc15;
  104. box-sizing: border-box;
  105. margin: 10px 0px;
  106. background-color: transparent;
  107. }
  108. .section .innercontainer textarea {
  109. position: relative;
  110. display: inline-block;
  111. float: left;
  112. font-size: 16px;
  113. font-family: sans-serif;
  114. font-weight: bold;
  115. color: #f3bc15;
  116. padding: 10px;
  117. border: 2px solid #f3bc15;
  118. resize: none;
  119. height: 200px;
  120. width: 100%;
  121. margin: 10px 0px;
  122. box-sizing: border-box;
  123. background-color: transparent;
  124. }
  125. .inname { float: left; width: 49%; }
  126. .incompany { float: right; width: 49%; }
  127. .inemail { float: left; width: 100%; }
  128. .inpostcode { float: left; width: 49%; }
  129. .innumber { float: right; width: 49%; }
  130. ::-webkit-input-placeholder { color: #f3bc15; }
  131. :-ms-input-placeholder { color: #f3bc15; }
  132. ::-moz-placeholder { color: #f3bc15; opacity: 1; }
  133. :-moz-placeholder { color: #f3bc15; opacity: 1; }
  134.  
  135. .buttoncontainer {
  136. position: relative;
  137. display: inline-block;
  138. width: 100%;
  139. max-width: 700px;
  140. margin: 20px 0;
  141. }
  142. .buttoncontainer .btn {
  143. position: relative;
  144. display: inline-block;
  145. font-family: sans-serif;
  146. font-weight: bold;
  147. font-size: 14px;
  148. padding: 10px 20px;
  149. background-color: #f3bc15;
  150. color: #000000;
  151. }
  152. .btn.next { float: right; }
  153. .btn.previous { float: left; }
  154. .btn.hidden { visibility: hidden; }
  155.  
  156.  
  157.  
  158.  
  159. .footer {
  160. position: relative;
  161. display: inline-block;
  162. padding: 50px 0px 20px 0px;
  163. width: 100%;
  164. text-align: center;
  165. background-color: #000000;
  166. }
  167. .footer .middlelink,
  168. .footer .bottomcont {
  169. position: relative;
  170. display: inline-block;
  171. width: 100%;
  172. max-width: 1360px;
  173. }
  174. .footer .middlelink h1 {
  175. position: relative;
  176. display: inline-block;
  177. width: 100%;
  178. text-align: center;
  179. color: #f3bc15;
  180. font-weight: 100;
  181. font-family: sans-serif;
  182. font-size: 16px;
  183. margin-bottom: 10px;
  184. }
  185. .footer .links h1 {
  186. position: relative;
  187. display: inline-block;
  188. width: 100%;
  189. text-align: left;
  190. color: #f3bc15;
  191. font-weight: 100;
  192. font-family: sans-serif;
  193. font-size: 14px;
  194. line-height: 25px;
  195. }
  196. .footer .links {
  197. width: 66.66666666%;
  198. float: left;
  199. }
  200. .footer .logo {
  201. width: 33.33333333%;
  202. float: left;
  203. }
  204. .footer .logo img {
  205. position: absolute;
  206. display: inline-block;
  207. max-height: 100%;
  208. max-width: 100%;
  209. top:0;
  210. right: 0;
  211. }
Advertisement
Add Comment
Please, Sign In to add comment