RyanEarnshaw

Untitled

Apr 7th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.90 KB | None | 0 0
  1. .bodycontainer {
  2. position: relative;
  3. display: inline-block;
  4. margin-top: 80px; /* size of header */
  5. margin-left: 20%; /* size of side-nav */
  6. /* padding-bottom: 200px; */
  7. background-color: #ffffff;
  8. float: left;
  9. width: 80%;
  10. }
  11. .headerimage {
  12. position: absolute;
  13. display: inline-block;
  14. width: 100%;
  15. height: 220px;
  16. top: 0;
  17. left: 0;
  18. }
  19. .headerimage img {
  20. width: 100%;
  21. height: 100%;
  22. }
  23. .innercont {
  24. position: relative;
  25. display: inline-block;
  26. float: left;
  27. padding: 5vh 5vw;
  28. box-sizing: border-box;
  29. background-color: #ffffff;
  30. }
  31.  
  32.  
  33.  
  34.  
  35.  
  36. .innercont .title {
  37. position: relative;
  38. display: inline-block;
  39. float: left;
  40. width: 100%;
  41. margin: 20px 0 40px;
  42. }
  43. .innercont .title:nth-child(3) {
  44. margin: 90px 0 0px;
  45. }
  46. .innercont .title h1 {
  47. font-size: 40px;
  48. font-family: 'Work Sans';
  49. font-weight: 100;
  50. color: #8ec640;
  51. }
  52. .innercont .title:after {
  53. content: '';
  54. position: absolute;
  55. bottom: -16px;
  56. width: 0px;
  57. height: 2px;
  58. background-color: #8ec640;
  59. animation: underline_animation 1s 0.5s 1 normal forwards;
  60. -o-animation: underline_animation 1s 0.5s 1 normal forwards;
  61. -moz-animation: underline_animation 1s 0.5s 1 normal forwards;
  62. -webkit-animation: underline_animation 1s 0.5s 1 normal forwards;
  63. }
  64. @keyframes underline_animation {
  65. 0% { width: 0px; }
  66. 100% { width: 100px; }
  67. }
  68. @-webkit-keyframes underline_animation {
  69. 0% { width: 0px; }
  70. 100% { width: 100px; }
  71. }
  72. @-moz-keyframes underline_animation {
  73. 0% { width: 0px; }
  74. 100% { width: 100px; }
  75. }
  76. @-o-keyframes underline_animation {
  77. 0% { width: 0px; }
  78. 100% { width: 100px; }
  79. }
  80. .innercont .body {
  81. position: relative;
  82. display: inline-block;
  83. float: left;
  84. width: 100%;
  85. }
  86. .innercont .body .column {
  87. position: relative;
  88. display: inline-block;
  89. height: 100%;
  90. float: left;
  91. }
  92. .innercont .body .column.c1 { width: 30%; margin-right: 5%; }
  93. .innercont .body .column.c2 { width: 65% }
  94. .innercont .body .column.c3 { width: 100% }
  95.  
  96. .innercont .body h2 {
  97. position: relative;
  98. font-size: 17px;
  99. font-family: 'Work Sans';
  100. font-weight: 100;
  101. color: #6b6b6b;
  102. margin: 7px 0;
  103. line-height: 25px;
  104. width: 100%;
  105. float: left;
  106. }
  107. .innercont .body .column.c1 h2 {
  108. font-size: 22px;
  109. }
  110. .innercont .body h2 a {
  111. font-weight: 600;
  112. color: #8ec640;
  113. text-decoration: none;
  114. }
  115. .innercont .body h2 span {
  116. font-size: 24px;
  117. font-family: 'Raleway';
  118. font-weight: 200;
  119. color: #83c640;
  120. }
  121. .innercont .body .bullet{
  122. margin: 0;
  123. }
  124.  
  125.  
  126. .innercont .body .quote {
  127. display: inline-block;
  128. padding: 10px 0px 10px 0px;
  129. }
  130. .innercont .body .quote h2 {
  131. width: 100%;
  132. line-height: 25px;
  133. font-family: 'Work Sans';
  134. font-size: 23px;
  135. font-weight: 300;
  136. margin-top: 10px;
  137. color: #000000;
  138. }
  139.  
  140. .body .icons {
  141. position: relative;
  142. display: inline-block;
  143. width: 100%;
  144. float: left;
  145. margin: 60px 0;
  146. }
  147. .body .icons .icon {
  148. position: relative;
  149. display: inline-block;
  150. width: 33%;
  151. padding: 0 2%;
  152. box-sizing: border-box;
  153. float: left;
  154. }
  155. .body .icons .icon img {
  156. position: relative;
  157. display: inline-block;
  158. width: 100%;
  159. padding: 0;
  160. float: left;
  161. }
  162. .body .icons .icon h2 {
  163. position: relative;
  164. display: inline-block;
  165. width: 100%;
  166. font-size: 14px;
  167. font-family: sans-serif;
  168. font-weight: 100;
  169. line-height: 20px;
  170. color: #7c7c7c;
  171. text-align: left;
  172. float: left;
  173. }
  174.  
  175. .innercont .body .grey-container {
  176. position: relative;
  177. display: inline-block;
  178. width: 100%;
  179. padding: 30px 5vw;
  180. left: -5vw;
  181. background-color: #e3e3e3;
  182. }
  183. .innercont .body .description {
  184. font-size: 24px;
  185. width: 100%;
  186. text-align: center;
  187. margin: 0;
  188. }
  189. .innercont .body .heading {
  190. font-size: 28px;
  191. width: 100%;
  192. text-align: center;
  193. margin: 20px 0;
  194. }
  195. .innercont .body .center {
  196. text-align: center;
  197. }
  198. .innercont .body .half-text {
  199. width: 50%;
  200. }
  201.  
  202.  
  203. .body .cloud-icon-container {
  204. position: relative;
  205. display: inline-block;
  206. width: 100%;
  207. border: 2px solid #f47d31;
  208. margin-top: 50px;
  209. margin-bottom: 20px;
  210. box-sizing: border-box;
  211. padding: 20px;
  212. }
  213. .body .cloud-icon-container .icon {
  214. position: relative;
  215. display: inline-block;
  216. width: 33%;
  217. height: 60px;
  218. padding: 0 30px;
  219. margin: 20px 0;
  220. box-sizing: border-box;
  221. }
  222. .body .cloud-icon-container .icon .image {
  223. position: absolute;
  224. display: inline-block;
  225. width: 90px;
  226. }
  227. .body .cloud-icon-container .icon h1 {
  228. position: relative;
  229. display: inline-block;
  230. padding-left: 90px;
  231. color: #595959;
  232. font-family: 'Work Sans';
  233. font-size: 16px;
  234. font-weight: 400;
  235. margin-top: 5px;
  236. }
  237.  
  238. .body .bullet-list {
  239. position: relative;
  240. display: inline-block;
  241. width: 50%;
  242. float: left;
  243. margin: 30px 0;
  244. }
  245. .body .bullet-list .bullet-title {
  246. position: relative;
  247. font-size: 15px;
  248. font-family: 'Work Sans';
  249. font-weight: bold;
  250. color: #8ec640;
  251. margin: 7px 0;
  252. line-height: 17px;
  253. width: 100%;
  254. float: left;
  255. }
  256. .body .bullet-list .bullet {
  257. position: relative;
  258. font-size: 15px;
  259. font-family: 'Work Sans';
  260. font-weight: 100;
  261. color: #6b6b6b;
  262. margin: 7px 0;
  263. line-height: 17px;
  264. width: 100%;
  265. float: left;
  266. }
  267. .body .bullet-list .bullet span {
  268. font-weight: bold;
  269. font-size: 10px;
  270. color: #8ec640;
  271. }
  272.  
  273. .body .case_study_title {
  274. position: relative;
  275. display: inline-block;
  276. width: 100%;
  277. border-bottom: 1px solid #8ec640;
  278. background-color: transparent;
  279. float: left;
  280. margin: 10px 0;
  281. cursor: pointer;
  282. }
  283. .body .case_study_title h2 {
  284. position: relative;
  285. display: inline-block;
  286. margin: 0;
  287. width: 100%;
  288. float: left;
  289. color: #8ec640;
  290. background-color: transparent;
  291. font-size: 14px;
  292. font-family: sans-serif;
  293. font-weight: 100;
  294. padding-bottom: 10px;
  295. }
  296. .body .case_study_title h3 {
  297. position: absolute;
  298. display: inline-block;
  299. right: 30px;
  300. bottom: 10px;
  301. color: #8ec640;
  302. background-color: transparent;
  303. font-size: 14px;
  304. font-family: sans-serif;
  305. font-weight: 100;
  306. }
  307. .body .case_study_title .plus {
  308. position: absolute;
  309. display: inline-block;
  310. right: 0;
  311. top: 0;
  312. color: #8ec640;
  313. background-color: transparent;
  314. font-size: 30px;
  315. font-family: sans-serif;
  316. font-weight: bold;
  317. padding-bottom: 10px;
  318. opacity: 0;
  319. transition: opacity 0.5s ease;
  320. }
  321. .body .case_study_title .minus {
  322. position: absolute;
  323. display: inline-block;
  324. right: 3px;
  325. bottom: 17px;
  326. height: 4px;
  327. width: 13px;
  328. background-color: #8ec640;
  329. opacity: 0;
  330. transition: opacity 0.5s ease;
  331. }
  332. .body .case_study_title .plus.active,
  333. .body .case_study_title .minus.active {
  334. opacity: 1;
  335. }
  336. .body .case_study_container {
  337. position: relative;
  338. display: inline-block;
  339. max-height: 0;
  340. overflow: hidden;
  341. transition: max-height 1s cubic-bezier(0,1,0,1);
  342. }
  343. .body .case_study_container.open {
  344. max-height: 300px;
  345. transition: max-height 1s ease-in-out;
  346. }
  347. .body .case_study_container h1 {
  348. position: relative;
  349. display: inline-block;
  350. margin: 0;
  351. width: 100%;
  352. float: left;
  353. color: #8ec640;
  354. background-color: transparent;
  355. font-size: 14px;
  356. font-family: sans-serif;
  357. font-weight: 100;
  358. padding-top: 10px;
  359. }
  360. .body .case_study_container h2 {
  361. position: relative;
  362. display: inline-block;
  363. margin: 0;
  364. width: 100%;
  365. float: left;
  366. color: #a7a7a7;
  367. background-color: transparent;
  368. font-size: 14px;
  369. font-family: sans-serif;
  370. font-weight: 100;
  371. padding-top: 10px;
  372. }
  373.  
  374.  
  375.  
  376. /* MEDIA QUERIES */
  377.  
  378.  
  379.  
  380. /* ----------------------------------------------------*/
  381. /* Code That Doesnt Change Between Mobile Resolution */
  382. /* ----------------------------------------------------*/
  383. @media only screen and (min-width : 0px) and (max-width : 992px) {
  384. .innercont .body .column.c1 { width: 100%; margin-right: 0; }
  385. .innercont .body .column.c2 { width: 100% }
  386. }
  387.  
  388.  
  389. /* ----------------------------------------------------*/
  390. /* Custom, iPhone Retina */
  391. /* ----------------------------------------------------*/
  392. @media only screen and (max-width : 320px) {
  393.  
  394. }
  395.  
  396.  
  397. /* ----------------------------------------------------*/
  398. /* Extra Small Devices, Phones */
  399. /* ----------------------------------------------------*/
  400. @media only screen and (min-width : 320px) and (max-width : 480px) {
  401.  
  402. }
  403.  
  404.  
  405. /* ----------------------------------------------------*/
  406. /* Small Devices, Tablets */
  407. /* ----------------------------------------------------*/
  408. @media only screen and (min-width : 480px) and (max-width : 768px) {
  409.  
  410. }
  411.  
  412.  
  413. /* ----------------------------------------------------*/
  414. /* Medium Devices, Desktops */
  415. /* ----------------------------------------------------*/
  416. @media only screen and (min-width : 768px) and (max-width : 992px) {
  417.  
  418. }
  419.  
  420.  
  421. /* ----------------------------------------------------*/
  422. /* Large Devices, Wide Screens */
  423. /* ----------------------------------------------------*/
  424. @media only screen and (min-width : 992px) and (max-width : 1200px) {
  425.  
  426. }
Advertisement
Add Comment
Please, Sign In to add comment