Advertisement
RyanJEarnshaw

Untitled

Sep 30th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.71 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Raleway:100,200,300,400');
  2. @import url('http://fonts.googleapis.com/css?family=Roboto');
  3. @import url('https://fonts.googleapis.com/css?family=Lobster+Two');
  4. @import url('http://weloveiconfonts.com/api/?family=entypo');
  5. @import url('https://fonts.googleapis.com/css?family=Work+Sans:100,400');
  6. @import url('https://fonts.googleapis.com/css?family=Gloria+Hallelujah');
  7. @import url('https://fonts.googleapis.com/css?family=Exo+2:200,400');
  8. @import url('https://fonts.googleapis.com/css?family=Handlee');
  9.  
  10. /* entypo */
  11. [class*="entypo-"]:before {
  12. font-family: 'entypo', sans-serif;
  13. }
  14.  
  15. * {
  16. margin:0;
  17. padding:0;
  18. }
  19.  
  20. html, body {
  21. font-family: 'Raleway', sans-serif;
  22. margin:0;
  23. padding:0;
  24. }
  25.  
  26. #container {
  27. background-image: url("/images/Concrete_Blue.png");
  28. background-repeat: repeat;
  29. min-height:100%;
  30. position:relative;
  31. background-color: rgba(43,52,92,1);;
  32. padding-bottom: 20%;
  33. }
  34.  
  35. #header {
  36. position: relative;
  37. top: 0;
  38. left: 0;
  39. width: 100%;
  40. height: auto;
  41. padding: 0.8% 0px;
  42. margin: 0;
  43. margin-top: -4%;
  44. -webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.2); /* x, y, blur, spread, colour*/
  45. -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.2); /* x, y, blur, spread, colour*/
  46. box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.2); /* x, y, blur, spread, colour*/
  47. z-index: 1;
  48. }
  49. #header-content #buttons a{
  50. text-align: center;
  51. width: 100px;
  52. }
  53.  
  54.  
  55. #imagecontainer {
  56. text-align: center;
  57. position: relative;
  58. overflow: hidden;
  59. display: table;
  60. margin: 0 auto;
  61. width: 100%;
  62. }
  63. #content h1, #content h3{
  64. font-weight: 100;
  65. }
  66. #content{
  67. border-radius: 10px;
  68. position: relative;
  69. overflow: hidden;
  70. font-family: 'Work Sans', sans-serif;
  71. font-weight: 400;
  72. font-size: 26px;
  73. font-style: normal;
  74. display: table;
  75. margin: 0 auto;
  76. background-color: none;
  77. width: 80%;
  78. text-align: center;
  79. padding-bottom: 30px;
  80. margin-top: 30px;
  81. padding-top: 10px;
  82. }
  83.  
  84. #content #title {
  85. color: white;
  86. }
  87. #description {
  88. font-size: 17px;
  89. color: white;
  90. margin: auto;
  91. width: 80%;
  92. }
  93. #headerimage img {
  94. width: 100%;
  95. display:block;
  96. }
  97.  
  98.  
  99. /* Basic Round Button Layout */
  100. #buttons {
  101. font-family: 'Exo 2', sans-serif;
  102. font-size: 14px;
  103. display: table;
  104. margin: 0 auto;
  105. }
  106. #buttons a {
  107. font-weight: 200;
  108. }
  109. #button-underline {
  110. margin: .4em;
  111. padding: 1em;
  112. cursor: pointer;
  113. background: none;
  114. text-decoration: none;
  115. color: #e1e1e1;
  116. -webkit-tap-highlight-color: rgba(0,0,0,0);
  117. display: inline-block;
  118. vertical-align: middle;
  119. -webkit-transform: translateZ(0);
  120. transform: translateZ(0);
  121. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  122. -webkit-backface-visibility: hidden;
  123. backface-visibility: hidden;
  124. -moz-osx-font-smoothing: grayscale;
  125. position: relative;
  126. overflow: hidden;
  127. }
  128. #button-underline:after {
  129. content: "";
  130. position: absolute;
  131. z-index: -1;
  132. left: 0;
  133. right: 0;
  134. bottom: 0;
  135. background: rgba(142,189,65,1);
  136. height: 4px;
  137. -webkit-transform: translateY(4px);
  138. transform: translateY(4px);
  139. -webkit-transition-property: transform;
  140. transition-property: transform;
  141. -webkit-transition-duration: 0.3s;
  142. transition-duration: 0.3s;
  143. -webkit-transition-timing-function: ease-out;
  144. transition-timing-function: ease-out;
  145. }
  146. #button-underline:hover:after, #button-underline:focus:after, #button-underline:active:after {
  147. -webkit-transform: translateY(0);
  148. transform: translateY(0);
  149. }
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157. #footer {
  158. position:absolute;
  159. width:100%;
  160. background-color: rgba(0, 0, 0, 0.4);
  161. color: white;
  162. margin-bottom: 20px;
  163. left: 0;
  164. width: 100%;
  165. height: 100px;
  166. bottom:0;
  167. }
  168. #footer2{
  169. position:absolute;
  170. width:100%;
  171. background-color: white;
  172. color: white;
  173. margin-bottom: 120px;
  174. left: 0;
  175. width: 100%;
  176. height: 50px;
  177. bottom:0;
  178. }
  179. #footer-content{
  180. float: left;
  181. width: 100%;
  182. height: 100%;
  183. display: inline-block;
  184. }
  185. #footer-content #footer-part2 a{
  186. text-decoration: none;
  187. color: white;
  188. }
  189. #footer-content #footer-part2 a:hover{
  190. text-decoration: underline;
  191. color: white;
  192. }
  193. #footer-content #footer-part3 a{
  194. text-decoration: none;
  195. color: none;
  196. }
  197. #footer-part1 {
  198. padding-left: 2%;
  199. float: left;
  200. height: 100%;
  201. display: flex;
  202. align-items: center;
  203. }
  204. #footer-part1 #footerimage {
  205. height: 86%;
  206. }
  207. #footer-part1 img {
  208. height: 100%;
  209. }
  210.  
  211. #footer-part2 {
  212. float: left;
  213. width: 25%;
  214. padding-left: 25%;
  215. }
  216. #footer-part2 h2{
  217. font-family: 'Raleway', sans-serif;
  218. font-weight: 100;
  219. font-size: 15px;
  220. margin-top: 20px;
  221. text-align: center;
  222. }
  223. #footer-part3 {
  224. display: flex;
  225. align-items: center;
  226. width: auto;
  227. height: 100px;
  228. float: right;
  229. padding-right: 2%;
  230. }
  231. section #services {
  232. text-align: center;
  233. transform: translatez(0);
  234. }
  235. section #services li {
  236. width: 40px;
  237. height: 50px;
  238. display: inline-block;
  239. margin: 10px;
  240. list-style: none;
  241. }
  242. section #services li div {
  243. border-radius: 10px;
  244. width: 50px;
  245. height: 50px;
  246. color: #fff;
  247. font-size: 2.2em;
  248. text-align: center;
  249. line-height: 50px;
  250. background-color: #74d4b3;
  251. transition: all 0.5s ease;
  252. }
  253. section #services li div:hover {
  254. transform: rotate(360deg);
  255. border-radius: 100px;
  256. }
  257. section a {
  258. background-color: black;
  259. color: black;
  260. }
  261. #footerbrandimage {
  262. display: inline-block;
  263. height: 100%;
  264. /*background-color: #74d4b3;*/
  265. margin: 0 10px;
  266. width: 8%;
  267. }
  268. #footerbrandimage img {
  269. display:block;
  270. margin:auto;
  271. height: 100%;
  272. }
  273. #footer2 #footer-content{
  274. display: flex;
  275. justify-content: center;
  276. float: middle;
  277. width: 100%;
  278. height: 100%;
  279. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement