Advertisement
RyanEarnshaw

Untitled

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