RyanEarnshaw

Untitled

Apr 10th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.02 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. margin-left: -5vw;
  181. background-color: #e3e3e3;
  182. }
  183. .innercont .body .grey-container.extra-margin {
  184. margin-top: 30px;
  185. margin-bottom: 30px;
  186. }
  187. .innercont .body .grey-container.extra-margin-top {
  188. margin-top: 30px;
  189. }
  190. .innercont .body .grey-container.extra-margin-bottom {
  191. margin-bottom: 30px;
  192. }
  193. .innercont .body .grey-triangle {
  194. position: relative;
  195. display: inline-block;
  196. width: 100%;
  197. float: left;
  198. height: 86px;
  199. margin-bottom: 30px;
  200. }
  201. .innercont .body .grey-triangle .image {
  202. position: relative;
  203. display: inline-block;
  204. height: 86px;
  205. width: 114%;
  206. margin-left: -5vw;
  207. }
  208.  
  209. .innercont .body .description {
  210. font-size: 24px;
  211. width: 100%;
  212. text-align: center;
  213. margin: 0;
  214. }
  215. .innercont .body .heading {
  216. font-size: 28px;
  217. width: 100%;
  218. text-align: center;
  219. margin: 20px 0;
  220. }
  221. .innercont .body .center {
  222. text-align: center;
  223. }
  224. .innercont .body .half-text {
  225. width: 50%;
  226. }
  227. .innercont .body .half-image {
  228. position: relative;
  229. height: 180px;
  230. width: 50%;
  231. }
  232.  
  233. .body .cloud-services-image {
  234. position: relative;
  235. display: inline-block;
  236. width: 100%;
  237. }
  238. .body .cloud-offericon-container {
  239. position: relative;
  240. display: inline-block;
  241. margin: 20px 0;
  242. text-align: center;
  243. box-sizing: border-box;
  244. padding: 0 10%;
  245. }
  246. .body .cloud-offericon-container .cloud-offericon {
  247. position: relative;
  248. display: inline-block;
  249. width: 25%;
  250. float: left;
  251. }
  252. .body .cloud-offericon-container .cloud-offericon-image {
  253. position: relative;
  254. display: inline-block;
  255. width: 100%;
  256. float: left;
  257. }
  258. .body .cloud-offericon-container h1 {
  259. position: relative;
  260. font-size: 17px;
  261. font-family: 'Work Sans';
  262. font-weight: 100;
  263. color: #6b6b6b;
  264. margin: 7px 0;
  265. line-height: 25px;
  266. width: 100%;
  267. float: left;
  268. text-align: center;
  269. }
  270. .body .cloud-icon-container {
  271. position: relative;
  272. display: inline-block;
  273. width: 100%;
  274. border: 2px solid #f47d31;
  275. margin-top: 80px;
  276. margin-bottom: 20px;
  277. box-sizing: border-box;
  278. padding: 60px 20px 20px 20px;
  279. }
  280. .body .cloud-icon-container:after {
  281. content: 'Just think how much easier life could be with our cloud services!';
  282. position: absolute;
  283. display: inline-block;
  284. top: -30px;
  285. left: 50%;
  286. transform: translateX(-50%);
  287. font-weight: 200;
  288. font-family: 'Work Sans';
  289. font-size: 30px;
  290. color: #6b6b6b;
  291. text-align: center;
  292. width: 90%;
  293. max-width: 700px;
  294. background-color: #ffffff;
  295. }
  296. .body .cloud-icon-container .icon {
  297. position: relative;
  298. display: inline-block;
  299. width: 33%;
  300. height: 60px;
  301. padding: 0 30px;
  302. margin: 20px 0;
  303. box-sizing: border-box;
  304. vertical-align: top;
  305. }
  306. .body .cloud-icon-container .icon .image {
  307. position: absolute;
  308. display: inline-block;
  309. width: 90px;
  310. }
  311. .body .cloud-icon-container .icon h1 {
  312. position: relative;
  313. display: inline-block;
  314. padding-left: 90px;
  315. color: #595959;
  316. font-family: 'Work Sans';
  317. font-size: 16px;
  318. font-weight: 400;
  319. margin-top: 5px;
  320. }
  321.  
  322.  
  323. .body .it-training-icon-container {
  324. position: relative;
  325. display: inline-block;
  326. width: 100%;
  327. margin-bottom: 20px;
  328. box-sizing: border-box;
  329. padding: 0px 20px 20px 20px;
  330. }
  331. .body .it-training-icon-container .icon {
  332. position: relative;
  333. display: inline-block;
  334. width: 33%;
  335. height: 60px;
  336. padding: 0 30px;
  337. margin: 20px 0;
  338. box-sizing: border-box;
  339. vertical-align: top;
  340. }
  341. .body .it-training-icon-container .icon .image {
  342. position: absolute;
  343. display: inline-block;
  344. width: 90px;
  345. top: 50%;
  346. transform: translateY(-50%);
  347. }
  348. .body .it-training-icon-container .icon h1 {
  349. position: relative;
  350. display: inline-block;
  351. padding-left: 90px;
  352. color: #595959;
  353. font-family: 'Work Sans';
  354. font-size: 16px;
  355. font-weight: 400;
  356. margin-top: 5px;
  357. }
  358.  
  359.  
  360. .body .bullet-list {
  361. position: relative;
  362. display: inline-block;
  363. width: 50%;
  364. float: left;
  365. margin: 30px 0;
  366. }
  367. .body .bullet-list .bullet-title {
  368. position: relative;
  369. font-size: 15px;
  370. font-family: 'Work Sans';
  371. font-weight: bold;
  372. color: #8ec640;
  373. margin: 7px 0;
  374. line-height: 17px;
  375. width: 100%;
  376. float: left;
  377. }
  378. .body .bullet-list .bullet {
  379. position: relative;
  380. font-size: 15px;
  381. font-family: 'Work Sans';
  382. font-weight: 100;
  383. color: #6b6b6b;
  384. margin: 7px 0;
  385. line-height: 17px;
  386. width: 100%;
  387. float: left;
  388. }
  389. .body .bullet-list .bullet span {
  390. font-weight: bold;
  391. font-size: 10px;
  392. color: #8ec640;
  393. }
  394.  
  395. .body .case_study_title {
  396. position: relative;
  397. display: inline-block;
  398. width: 100%;
  399. border-bottom: 1px solid #8ec640;
  400. background-color: transparent;
  401. float: left;
  402. margin: 10px 0;
  403. cursor: pointer;
  404. }
  405. .body .case_study_title h2 {
  406. position: relative;
  407. display: inline-block;
  408. margin: 0;
  409. width: 100%;
  410. float: left;
  411. color: #8ec640;
  412. background-color: transparent;
  413. font-size: 14px;
  414. font-family: sans-serif;
  415. font-weight: 100;
  416. padding-bottom: 10px;
  417. }
  418. .body .case_study_title h3 {
  419. position: absolute;
  420. display: inline-block;
  421. right: 30px;
  422. bottom: 10px;
  423. color: #8ec640;
  424. background-color: transparent;
  425. font-size: 14px;
  426. font-family: sans-serif;
  427. font-weight: 100;
  428. }
  429. .body .case_study_title .plus {
  430. position: absolute;
  431. display: inline-block;
  432. right: 0;
  433. top: 0;
  434. color: #8ec640;
  435. background-color: transparent;
  436. font-size: 30px;
  437. font-family: sans-serif;
  438. font-weight: bold;
  439. padding-bottom: 10px;
  440. opacity: 0;
  441. transition: opacity 0.5s ease;
  442. }
  443. .body .case_study_title .minus {
  444. position: absolute;
  445. display: inline-block;
  446. right: 3px;
  447. bottom: 17px;
  448. height: 4px;
  449. width: 13px;
  450. background-color: #8ec640;
  451. opacity: 0;
  452. transition: opacity 0.5s ease;
  453. }
  454. .body .case_study_title .plus.active,
  455. .body .case_study_title .minus.active {
  456. opacity: 1;
  457. }
  458. .body .case_study_container {
  459. position: relative;
  460. display: inline-block;
  461. max-height: 0;
  462. overflow: hidden;
  463. transition: max-height 1s cubic-bezier(0,1,0,1);
  464. }
  465. .body .case_study_container.open {
  466. max-height: 300px;
  467. transition: max-height 1s ease-in-out;
  468. }
  469. .body .case_study_container h1 {
  470. position: relative;
  471. display: inline-block;
  472. margin: 0;
  473. width: 100%;
  474. float: left;
  475. color: #8ec640;
  476. background-color: transparent;
  477. font-size: 14px;
  478. font-family: sans-serif;
  479. font-weight: 100;
  480. padding-top: 10px;
  481. }
  482. .body .case_study_container h2 {
  483. position: relative;
  484. display: inline-block;
  485. margin: 0;
  486. width: 100%;
  487. float: left;
  488. color: #a7a7a7;
  489. background-color: transparent;
  490. font-size: 14px;
  491. font-family: sans-serif;
  492. font-weight: 100;
  493. padding-top: 10px;
  494. }
  495.  
  496.  
  497. .body .it-security-image {
  498. position: relative;
  499. display: inline-block;
  500. width: 80%;
  501. margin:0 10%
  502. }
  503.  
  504. .body .it-training-image {
  505. position: relative;
  506. display: inline-block;
  507. width: 100%;
  508. margin: 10px 0;
  509. }
  510. .body .it-training-image-2 {
  511. position: absolute;
  512. display: inline-block;
  513. height: 100%;
  514. top: -0px;
  515. right: 0;
  516. }
  517. .innercont .body .it-training-half-text {
  518. width: 100%;
  519. padding-right: 400px;
  520. box-sizing: border-box;
  521. }
  522. /* MEDIA QUERIES */
  523.  
  524.  
  525.  
  526. /* ----------------------------------------------------*/
  527. /* Code That Doesnt Change Between Mobile Resolution */
  528. /* ----------------------------------------------------*/
  529. @media only screen and (min-width : 0px) and (max-width : 992px) {
  530. .innercont .body .column.c1 { width: 100%; margin-right: 0; }
  531. .innercont .body .column.c2 { width: 100% }
  532. }
  533.  
  534.  
  535. /* ----------------------------------------------------*/
  536. /* Custom, iPhone Retina */
  537. /* ----------------------------------------------------*/
  538. @media only screen and (max-width : 320px) {
  539.  
  540. }
  541.  
  542.  
  543. /* ----------------------------------------------------*/
  544. /* Extra Small Devices, Phones */
  545. /* ----------------------------------------------------*/
  546. @media only screen and (min-width : 320px) and (max-width : 480px) {
  547.  
  548. }
  549.  
  550.  
  551. /* ----------------------------------------------------*/
  552. /* Small Devices, Tablets */
  553. /* ----------------------------------------------------*/
  554. @media only screen and (min-width : 480px) and (max-width : 768px) {
  555.  
  556. }
  557.  
  558.  
  559. /* ----------------------------------------------------*/
  560. /* Medium Devices, Desktops */
  561. /* ----------------------------------------------------*/
  562. @media only screen and (min-width : 768px) and (max-width : 992px) {
  563.  
  564. }
  565.  
  566.  
  567. /* ----------------------------------------------------*/
  568. /* Large Devices, Wide Screens */
  569. /* ----------------------------------------------------*/
  570. @media only screen and (min-width : 992px) and (max-width : 1200px) {
  571.  
  572. }
Advertisement
Add Comment
Please, Sign In to add comment