RyanEarnshaw

Untitled

Feb 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.68 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. .reward {
  156. position: relative;
  157. display: inline-block;
  158. margin-bottom: 20px;
  159. border: 2px solid #ffffff;
  160. width: 50%;
  161. }
  162. .reward h1 {
  163. position: relative;
  164. display: inline-block;
  165. height: 50px;
  166. text-align: center;
  167. box-sizing: border-box;
  168. }
  169. .reward .points {
  170. width: 25%;
  171. font-size: 25px;
  172. color: #ffffff;
  173. }
  174. .reward .description {
  175. width: 60%;
  176. font-size: 15px;
  177. color: #ffffff;
  178. padding: 10px 0;
  179. }
  180.  
  181. .buttoncontainer {
  182. position: relative;
  183. display: inline-block;
  184. width: 100%;
  185. max-width: 700px;
  186. margin: 20px 0;
  187. }
  188. .buttoncontainer .btn {
  189. position: relative;
  190. display: inline-block;
  191. font-family: sans-serif;
  192. font-weight: bold;
  193. font-size: 14px;
  194. padding: 10px 20px;
  195. background-color: #f3bc15;
  196. color: #000000;
  197. }
  198. .btn.next { float: right; }
  199. .btn.previous { float: left; }
  200. .btn.hidden { visibility: hidden; }
  201.  
  202.  
  203.  
  204.  
  205. .footer {
  206. position: relative;
  207. display: inline-block;
  208. padding: 50px 0px 20px 0px;
  209. width: 100%;
  210. text-align: center;
  211. background-color: #000000;
  212. }
  213. .footer .middlelink,
  214. .footer .bottomcont {
  215. position: relative;
  216. display: inline-block;
  217. width: 100%;
  218. max-width: 1360px;
  219. }
  220. .footer .middlelink h1 {
  221. position: relative;
  222. display: inline-block;
  223. width: 100%;
  224. text-align: center;
  225. color: #f3bc15;
  226. font-weight: 100;
  227. font-family: sans-serif;
  228. font-size: 16px;
  229. margin-bottom: 10px;
  230. }
  231. .footer .links h1 {
  232. position: relative;
  233. display: inline-block;
  234. width: 100%;
  235. text-align: left;
  236. color: #f3bc15;
  237. font-weight: 100;
  238. font-family: sans-serif;
  239. font-size: 14px;
  240. line-height: 25px;
  241. }
  242. .footer .links {
  243. width: 66.66666666%;
  244. float: left;
  245. }
  246. .footer .logo {
  247. width: 33.33333333%;
  248. float: left;
  249. }
  250. .footer .logo img {
  251. position: absolute;
  252. display: inline-block;
  253. max-height: 100%;
  254. max-width: 100%;
  255. top:0;
  256. right: 0;
  257. }
Advertisement
Add Comment
Please, Sign In to add comment