RyanEarnshaw

Untitled

Feb 24th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.24 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. transition: left 0.5s ease;
  78. }
  79. .section .innercontainer .formholder h1 {
  80. position: relative;
  81. display: inline-block;
  82. width: 100%;
  83. color: #f3bc15;
  84. font-size: 30px;
  85. font-family: sans-serif;
  86. font-weight: 100;
  87. margin: 50px 0px 30px 0;
  88. }
  89.  
  90. .section .innercontainer .formholder .minus200 { top: 0; left: -240%; }
  91. .section .innercontainer .formholder .minus100 { top: 0; left: -120%; }
  92. .section .innercontainer .formholder .normal { top: 0; left: 0; }
  93. .section .innercontainer .formholder .plus100 { top: 0; left: 120%; }
  94. .section .innercontainer .formholder .plus200 { top: 0; left: 240%; }
  95.  
  96. .section .innercontainer input {
  97. position: relative;
  98. display: inline-block;
  99. font-size: 16px;
  100. font-family: sans-serif;
  101. font-weight: bold;
  102. color: #f3bc15;
  103. padding: 15px;
  104. border: 2px solid #f3bc15;
  105. box-sizing: border-box;
  106. margin: 10px 0px;
  107. background-color: transparent;
  108. transition: border 0.4s ease;
  109. }
  110. .section .innercontainer textarea {
  111. position: relative;
  112. display: inline-block;
  113. float: left;
  114. font-size: 16px;
  115. font-family: sans-serif;
  116. font-weight: bold;
  117. color: #f3bc15;
  118. padding: 10px;
  119. border: 2px solid #f3bc15;
  120. resize: none;
  121. height: 200px;
  122. width: 100%;
  123. margin: 10px 0px;
  124. box-sizing: border-box;
  125. background-color: transparent;
  126. transition: border 0.4s ease;
  127. }
  128. .section .innercontainer .inname { float: left; width: 49%; }
  129. .section .innercontainer .incompany { float: right; width: 49%; }
  130. .section .innercontainer .inemail { float: left; width: 100%; }
  131. .section .innercontainer .inpostcode { float: left; width: 49%; }
  132. .section .innercontainer .innumber { float: right; width: 49%; }
  133. .section .innercontainer .inpoints { float: left; width: 100%; text-align: center; font-size: 76px; padding: 15px 0; }
  134.  
  135. ::-webkit-input-placeholder { color: #f3bc15; }
  136. :-ms-input-placeholder { color: #f3bc15; }
  137. ::-moz-placeholder { color: #f3bc15; opacity: 1; }
  138. :-moz-placeholder { color: #f3bc15; opacity: 1; }
  139.  
  140. input:focus,
  141. input:valid,
  142. textarea:focus,
  143. textarea:valid {
  144. box-shadow: none;
  145. outline: none;
  146. background-position: 0 0;
  147. }
  148. .section .innercontainer input:active,
  149. .section .innercontainer input:focus,
  150. .section .innercontainer textarea:active,
  151. .section .innercontainer textarea:focus {
  152. border: 2px solid #ffffff;
  153. }
  154.  
  155. .buttoncontainer {
  156. position: relative;
  157. display: inline-block;
  158. width: 100%;
  159. max-width: 700px;
  160. margin: 20px 0;
  161. }
  162. .buttoncontainer .btn {
  163. position: relative;
  164. display: inline-block;
  165. font-family: sans-serif;
  166. font-weight: bold;
  167. font-size: 14px;
  168. padding: 10px 20px;
  169. background-color: #f3bc15;
  170. color: #000000;
  171. }
  172. .btn.next { float: right; }
  173. .btn.previous { float: left; }
  174. .btn.hidden { visibility: hidden; }
  175.  
  176.  
  177.  
  178.  
  179. .footer {
  180. position: relative;
  181. display: inline-block;
  182. padding: 50px 0px 20px 0px;
  183. width: 100%;
  184. text-align: center;
  185. background-color: #000000;
  186. }
  187. .footer .middlelink,
  188. .footer .bottomcont {
  189. position: relative;
  190. display: inline-block;
  191. width: 100%;
  192. max-width: 1360px;
  193. }
  194. .footer .middlelink h1 {
  195. position: relative;
  196. display: inline-block;
  197. width: 100%;
  198. text-align: center;
  199. color: #f3bc15;
  200. font-weight: 100;
  201. font-family: sans-serif;
  202. font-size: 16px;
  203. margin-bottom: 10px;
  204. }
  205. .footer .links h1 {
  206. position: relative;
  207. display: inline-block;
  208. width: 100%;
  209. text-align: left;
  210. color: #f3bc15;
  211. font-weight: 100;
  212. font-family: sans-serif;
  213. font-size: 14px;
  214. line-height: 25px;
  215. }
  216. .footer .links {
  217. width: 66.66666666%;
  218. float: left;
  219. }
  220. .footer .logo {
  221. width: 33.33333333%;
  222. float: left;
  223. }
  224. .footer .logo img {
  225. position: absolute;
  226. display: inline-block;
  227. max-height: 100%;
  228. max-width: 100%;
  229. top:0;
  230. right: 0;
  231. }
Advertisement
Add Comment
Please, Sign In to add comment