RyanEarnshaw

Untitled

Feb 23rd, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 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. }
  39. .section .innercontainer .sectionheading {
  40. position: relative;
  41. display: inline-block;
  42. width: 100%;
  43. padding: 10px 0;
  44. }
  45. .section .innercontainer .sectionheading h1 {
  46. position: relative;
  47. display: inline-block;
  48. width: auto;
  49. color: #f3bc15;
  50. font-size: 60px;
  51. font-family: sans-serif;
  52. font-weight: 100;
  53. vertical-align: top;
  54. margin: 0 5%;
  55. margin-top: 10px;
  56. border-bottom: 2px solid #f3bc15;
  57. }
  58. .section .innercontainer .sectionheading img {
  59. position: relative;
  60. display: inline-block;
  61. max-width: 50px;
  62. max-height: 200px;
  63. }
  64. .section .innercontainer .formholder {
  65. position: relative;
  66. display: inline-block;
  67. width: 100%;
  68. max-width: 700px;
  69. }
  70. .section .innercontainer .formholder h1 {
  71. position: relative;
  72. display: inline-block;
  73. width: 100%;
  74. color: #f3bc15;
  75. font-size: 30px;
  76. font-family: sans-serif;
  77. font-weight: 100;
  78. margin: 50px 0px 30px 0;
  79. }
  80. .section .innercontainer input {
  81. position: relative;
  82. display: inline-block;
  83. font-size: 16px;
  84. font-family: sans-serif;
  85. font-weight: bold;
  86. color: #f3bc15;
  87. padding: 15px;
  88. border: 2px solid #f3bc15;
  89. box-sizing: border-box;
  90. margin: 10px 0px;
  91. background-color: transparent;
  92. }
  93. .section .innercontainer textarea {
  94. position: relative;
  95. display: inline-block;
  96. float: left;
  97. font-size: 16px;
  98. font-family: sans-serif;
  99. font-weight: bold;
  100. color: #f3bc15;
  101. padding: 10px;
  102. border: 2px solid #f3bc15;
  103. resize: none;
  104. height: 200px;
  105. width: 100%;
  106. margin: 10px 0px;
  107. box-sizing: border-box;
  108. background-color: transparent;
  109. }
  110. .inname { float: left; width: 49%; }
  111. .incompany { float: right; width: 49%; }
  112. .inemail { float: left; width: 100%; }
  113. .inpostcode { float: left; width: 49%; }
  114. .innumber { float: right; width: 49%; }
  115. ::-webkit-input-placeholder { color: #f3bc15; }
  116. :-ms-input-placeholder { color: #f3bc15; }
  117. ::-moz-placeholder { color: #f3bc15; opacity: 1; }
  118. :-moz-placeholder { color: #f3bc15; opacity: 1; }
  119.  
  120.  
  121. .footer {
  122. position: relative;
  123. display: inline-block;
  124. padding: 50px 0px 20px 0px;
  125. width: 100%;
  126. text-align: center;
  127. background-color: #000000;
  128. }
  129. .footer .middlelink,
  130. .footer .bottomcont {
  131. position: relative;
  132. display: inline-block;
  133. width: 100%;
  134. max-width: 1360px;
  135. }
  136. .footer .middlelink h1 {
  137. position: relative;
  138. display: inline-block;
  139. width: 100%;
  140. text-align: center;
  141. color: #f3bc15;
  142. font-weight: 100;
  143. font-family: sans-serif;
  144. font-size: 16px;
  145. margin-bottom: 10px;
  146. }
  147. .footer .links h1 {
  148. position: relative;
  149. display: inline-block;
  150. width: 100%;
  151. text-align: left;
  152. color: #f3bc15;
  153. font-weight: 100;
  154. font-family: sans-serif;
  155. font-size: 14px;
  156. line-height: 25px;
  157. }
  158. .footer .links {
  159. width: 66.66666666%;
  160. float: left;
  161. }
  162. .footer .logo {
  163. width: 33.33333333%;
  164. float: left;
  165. }
  166. .footer .logo img {
  167. position: absolute;
  168. display: inline-block;
  169. max-height: 100%;
  170. max-width: 100%;
  171. top:0;
  172. right: 0;
  173. }
Advertisement
Add Comment
Please, Sign In to add comment