Advertisement
RyanJEarnshaw

Untitled

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