Advertisement
RyanJEarnshaw

Untitled

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