Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .bodycontainer {
- position: relative;
- display: inline-block;
- margin-top: 80px; /* size of header */
- margin-left: 20%; /* size of side-nav */
- padding-bottom: 200px;
- background-color: #ffffff;
- float: left;
- width: 80%;
- }
- .headerimage {
- position: absolute;
- display: inline-block;
- width: 100%;
- height: 220px;
- top: 0;
- left: 0;
- }
- .headerimage img {
- width: 100%;
- height: 100%;
- }
- .innercont {
- position: relative;
- display: inline-block;
- float: left;
- padding: 5vh 5vw;
- box-sizing: border-box;
- background-color: #ffffff;
- }
- .innercont .title {
- position: relative;
- display: inline-block;
- float: left;
- width: 100%;
- margin: 20px 0 40px;
- }
- .innercont .title h1 {
- font-size: 24px;
- font-family: sans-serif;
- font-weight: 600;
- color: #8ec640;
- }
- .innercont .title:after {
- content: '';
- position: absolute;
- bottom: -16px;
- width: 0px;
- height: 2px;
- background-color: #8ec640;
- animation: underline_animation 1s 0.5s 1 normal forwards;
- -o-animation: underline_animation 1s 0.5s 1 normal forwards;
- -moz-animation: underline_animation 1s 0.5s 1 normal forwards;
- -webkit-animation: underline_animation 1s 0.5s 1 normal forwards;
- }
- @keyframes underline_animation {
- 0% { width: 0px; }
- 100% { width: 100px; }
- }
- @-webkit-keyframes underline_animation {
- 0% { width: 0px; }
- 100% { width: 100px; }
- }
- @-moz-keyframes underline_animation {
- 0% { width: 0px; }
- 100% { width: 100px; }
- }
- @-o-keyframes underline_animation {
- 0% { width: 0px; }
- 100% { width: 100px; }
- }
- .innercont .body {
- position: relative;
- display: inline-block;
- float: left;
- width: 100%;
- }
- .innercont .body .column {
- position: relative;
- display: inline-block;
- height: 100%;
- float: left;
- }
- .innercont .body .column.c1 { width: 30%; margin-right: 5%; }
- .innercont .body .column.c2 { width: 65% }
- .innercont .body h2 {
- position: relative;
- font-size: 15px;
- font-family: sans-serif;
- font-weight: 100;
- color: #6b6b6b;
- margin: 7px 0;
- line-height: 25px;
- width: 100%;
- float: left;
- }
- .innercont .body .column.c1 h2 {
- font-weight: bold;
- }
- .innercont .body h2 a {
- font-weight: 600;
- color: #8ec640;
- text-decoration: none;
- }
- .innercont .body .quote {
- display: inline-block;
- padding: 10px 0px 10px 0px;
- border-top: 2px solid #8ec640;
- border-bottom: 2px solid #8ec640;
- }
- .innercont .body .quote h2 {
- width: 100%;
- line-height: 25px;
- font-size: 13px;
- font-weight: 100;
- margin-top: 10px;
- color: #8ec640;
- }
- .innercont .body .quote h3 {
- font-size: 17px;
- font-family: sans-serif;
- color: #8ec640;
- font-weight: 100;
- width: 100%;
- margin-top: 10px;
- }
- .innercont .body h2 span {
- font-weight: bold;
- color: #83c640;
- }
- .body .imagetable {
- position: relative;
- float: left;
- width: 100%;
- border-collapse: collapse;
- background-color: #e2e2e2;
- border:1px solid #d5d5d5;
- border-radius: 5px;
- }
- .body .imagetable img {
- position: relative;
- left: 50%;
- transform: translateX(-50%);
- max-width: 30%;
- margin: 20px 0;
- max-height: 40%;
- }
- .body .imagetable .width25 { width: 25%; }
- .body .imagetable .width25:nth-last-child(1) { padding-right: 10px; }
- /* MEDIA QUERIES */
- /* ----------------------------------------------------*/
- /* Code That Doesnt Change Between Mobile Resolution */
- /* ----------------------------------------------------*/
- @media only screen and (min-width : 0px) and (max-width : 992px) {
- .innercont .body .column.c1 { width: 100%; margin-right: 0; }
- .innercont .body .column.c2 { width: 100% }
- }
- /* ----------------------------------------------------*/
- /* Custom, iPhone Retina */
- /* ----------------------------------------------------*/
- @media only screen and (max-width : 320px) {
- }
- /* ----------------------------------------------------*/
- /* Extra Small Devices, Phones */
- /* ----------------------------------------------------*/
- @media only screen and (min-width : 320px) and (max-width : 480px) {
- }
- /* ----------------------------------------------------*/
- /* Small Devices, Tablets */
- /* ----------------------------------------------------*/
- @media only screen and (min-width : 480px) and (max-width : 768px) {
- }
- /* ----------------------------------------------------*/
- /* Medium Devices, Desktops */
- /* ----------------------------------------------------*/
- @media only screen and (min-width : 768px) and (max-width : 992px) {
- }
- /* ----------------------------------------------------*/
- /* Large Devices, Wide Screens */
- /* ----------------------------------------------------*/
- @media only screen and (min-width : 992px) and (max-width : 1200px) {
- .innercont .body .buttoncontainer .ctabutton h1 { width: 70%; }
- .innercont .body .buttoncontainer .ctabutton.but3 { height: 70px; width: 100%; margin-right: 0; }
- }
Advertisement
Add Comment
Please, Sign In to add comment