RyanEarnshaw

Untitled

Apr 7th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.34 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: 80px;
  209. margin-bottom: 20px;
  210. box-sizing: border-box;
  211. padding: 60px 20px 20px 20px;
  212. }
  213. .body .cloud-icon-container:after {
  214. content: 'Just think how much easier life could be with our cloud services!';
  215. position: absolute;
  216. display: inline-block;
  217. top: -30px;
  218. left: 50%;
  219. transform: translateX(-50%);
  220. font-weight: 200;
  221. font-family: 'Work Sans';
  222. font-size: 30px;
  223. color: #6b6b6b;
  224. text-align: center;
  225. width: 90%;
  226. max-width: 700px;
  227. background-color: #ffffff;
  228. }
  229. .body .cloud-icon-container .icon {
  230. position: relative;
  231. display: inline-block;
  232. width: 33%;
  233. height: 60px;
  234. padding: 0 30px;
  235. margin: 20px 0;
  236. box-sizing: border-box;
  237. vertical-align: top;
  238. }
  239. .body .cloud-icon-container .icon .image {
  240. position: absolute;
  241. display: inline-block;
  242. width: 90px;
  243. }
  244. .body .cloud-icon-container .icon h1 {
  245. position: relative;
  246. display: inline-block;
  247. padding-left: 90px;
  248. color: #595959;
  249. font-family: 'Work Sans';
  250. font-size: 16px;
  251. font-weight: 400;
  252. margin-top: 5px;
  253. }
  254.  
  255. .body .bullet-list {
  256. position: relative;
  257. display: inline-block;
  258. width: 50%;
  259. float: left;
  260. margin: 30px 0;
  261. }
  262. .body .bullet-list .bullet-title {
  263. position: relative;
  264. font-size: 15px;
  265. font-family: 'Work Sans';
  266. font-weight: bold;
  267. color: #8ec640;
  268. margin: 7px 0;
  269. line-height: 17px;
  270. width: 100%;
  271. float: left;
  272. }
  273. .body .bullet-list .bullet {
  274. position: relative;
  275. font-size: 15px;
  276. font-family: 'Work Sans';
  277. font-weight: 100;
  278. color: #6b6b6b;
  279. margin: 7px 0;
  280. line-height: 17px;
  281. width: 100%;
  282. float: left;
  283. }
  284. .body .bullet-list .bullet span {
  285. font-weight: bold;
  286. font-size: 10px;
  287. color: #8ec640;
  288. }
  289.  
  290. .body .case_study_title {
  291. position: relative;
  292. display: inline-block;
  293. width: 100%;
  294. border-bottom: 1px solid #8ec640;
  295. background-color: transparent;
  296. float: left;
  297. margin: 10px 0;
  298. cursor: pointer;
  299. }
  300. .body .case_study_title h2 {
  301. position: relative;
  302. display: inline-block;
  303. margin: 0;
  304. width: 100%;
  305. float: left;
  306. color: #8ec640;
  307. background-color: transparent;
  308. font-size: 14px;
  309. font-family: sans-serif;
  310. font-weight: 100;
  311. padding-bottom: 10px;
  312. }
  313. .body .case_study_title h3 {
  314. position: absolute;
  315. display: inline-block;
  316. right: 30px;
  317. bottom: 10px;
  318. color: #8ec640;
  319. background-color: transparent;
  320. font-size: 14px;
  321. font-family: sans-serif;
  322. font-weight: 100;
  323. }
  324. .body .case_study_title .plus {
  325. position: absolute;
  326. display: inline-block;
  327. right: 0;
  328. top: 0;
  329. color: #8ec640;
  330. background-color: transparent;
  331. font-size: 30px;
  332. font-family: sans-serif;
  333. font-weight: bold;
  334. padding-bottom: 10px;
  335. opacity: 0;
  336. transition: opacity 0.5s ease;
  337. }
  338. .body .case_study_title .minus {
  339. position: absolute;
  340. display: inline-block;
  341. right: 3px;
  342. bottom: 17px;
  343. height: 4px;
  344. width: 13px;
  345. background-color: #8ec640;
  346. opacity: 0;
  347. transition: opacity 0.5s ease;
  348. }
  349. .body .case_study_title .plus.active,
  350. .body .case_study_title .minus.active {
  351. opacity: 1;
  352. }
  353. .body .case_study_container {
  354. position: relative;
  355. display: inline-block;
  356. max-height: 0;
  357. overflow: hidden;
  358. transition: max-height 1s cubic-bezier(0,1,0,1);
  359. }
  360. .body .case_study_container.open {
  361. max-height: 300px;
  362. transition: max-height 1s ease-in-out;
  363. }
  364. .body .case_study_container h1 {
  365. position: relative;
  366. display: inline-block;
  367. margin: 0;
  368. width: 100%;
  369. float: left;
  370. color: #8ec640;
  371. background-color: transparent;
  372. font-size: 14px;
  373. font-family: sans-serif;
  374. font-weight: 100;
  375. padding-top: 10px;
  376. }
  377. .body .case_study_container h2 {
  378. position: relative;
  379. display: inline-block;
  380. margin: 0;
  381. width: 100%;
  382. float: left;
  383. color: #a7a7a7;
  384. background-color: transparent;
  385. font-size: 14px;
  386. font-family: sans-serif;
  387. font-weight: 100;
  388. padding-top: 10px;
  389. }
  390.  
  391.  
  392.  
  393. /* MEDIA QUERIES */
  394.  
  395.  
  396.  
  397. /* ----------------------------------------------------*/
  398. /* Code That Doesnt Change Between Mobile Resolution */
  399. /* ----------------------------------------------------*/
  400. @media only screen and (min-width : 0px) and (max-width : 992px) {
  401. .innercont .body .column.c1 { width: 100%; margin-right: 0; }
  402. .innercont .body .column.c2 { width: 100% }
  403. }
  404.  
  405.  
  406. /* ----------------------------------------------------*/
  407. /* Custom, iPhone Retina */
  408. /* ----------------------------------------------------*/
  409. @media only screen and (max-width : 320px) {
  410.  
  411. }
  412.  
  413.  
  414. /* ----------------------------------------------------*/
  415. /* Extra Small Devices, Phones */
  416. /* ----------------------------------------------------*/
  417. @media only screen and (min-width : 320px) and (max-width : 480px) {
  418.  
  419. }
  420.  
  421.  
  422. /* ----------------------------------------------------*/
  423. /* Small Devices, Tablets */
  424. /* ----------------------------------------------------*/
  425. @media only screen and (min-width : 480px) and (max-width : 768px) {
  426.  
  427. }
  428.  
  429.  
  430. /* ----------------------------------------------------*/
  431. /* Medium Devices, Desktops */
  432. /* ----------------------------------------------------*/
  433. @media only screen and (min-width : 768px) and (max-width : 992px) {
  434.  
  435. }
  436.  
  437.  
  438. /* ----------------------------------------------------*/
  439. /* Large Devices, Wide Screens */
  440. /* ----------------------------------------------------*/
  441. @media only screen and (min-width : 992px) and (max-width : 1200px) {
  442.  
  443. }
Advertisement
Add Comment
Please, Sign In to add comment