Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .bodycontainer {
- position: relative;
- display: inline-block;
- margin-top: 140px; /* 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%;
- }
- .landing-page-logo {
- position: relative;
- display: inline-block;
- float: left;
- width: 100%;
- height: 200px;
- background-color: #d9d9d9;
- }
- .landing-page-logo img {
- position: absolute;
- display: inline-block;
- bottom: 10%;
- left: 50%;
- transform: translateX(-50%);
- max-width: 80%;
- max-height: 80%;
- }
- .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 20px;
- }
- .innercont .title h1 {
- font-size: 24px;
- font-family: sans-serif;
- font-weight: 600;
- color: #8ec640;
- }
- .innercont .title:after {
- content: '';
- position: absolute;
- bottom: -10px;
- width: 100px;
- height: 2px;
- background-color: #8ec640;
- }
- .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%; padding: 0 150px; box-sizing: border-box; }
- .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 h2 a {
- font-weight: 600;
- color: #8ec640;
- text-decoration: none;
- }
- .contact-details {
- position: relative;
- display: inline-block;
- margin: 10px 0px 400px 0px;
- width: 100%;
- }
- .innercont .body .contact-details h2 {
- position: relative;
- display: inline-block;
- width: 100%;
- margin: 0;
- line-height: 19px;
- }
- .innercont .body .contact-details .name {
- font-weight: bold;
- color: #8ec640;
- }
- .innercont .body .contact-details .role {
- color: #8ec640;
- }
- .body .form {
- position: relative;
- display: inline-block;
- float: left;
- width: 100%;
- background-color: #e3e3e3;
- border: 1px solid #c9c9c9;
- box-sizing: border-box;
- }
- .body .form form {
- position: relative;
- display: inline-block;
- width: 90%;
- padding: 0 5%;
- }
- .body .form h1 {
- position: relative;
- display: inline-block;
- width: 100%;
- font-size: 26px;
- font-family: sans-serif;
- font-weight: bold;
- color: #8ec640;
- text-align: left;
- margin: 20px 0;
- padding: 0 5%;
- }
- .body .form input,
- .body .form select {
- color: #8ec640;
- font-size: 13px;
- border: none;
- padding: 13px 5px;
- margin: 3px 0;
- background-color: #ffffff;
- border-radius: 2px;
- font-family: arial;
- box-sizing: border-box;
- border: 1px solid #c9c9c9;
- }
- .body .form input:focus,
- .body .form input:valid {
- box-shadow: none;
- outline: none;
- background-position: 0 0;
- border: 1px solid #c9c9c9;
- }
- .body .form .inname { width: 100%; float: left; }
- .body .form .injobtitle { width: 49%; float: left; }
- .body .form .incompany { width: 49%; float: right; }
- .body .form .inemail { width: 49%; float: left; }
- .body .form .inphone { width: 49%; float: right; }
- .body .form .inaddress { width: 100%; float: left; }
- .body .form .indropdown { width: 100%; float: left; -webkit-appearance: none; }
- .body .form .submit {
- position: relative;
- display: inline-block;
- background-color: #ffffff;
- -webkit-appearance: none;
- }
- /* MEDIA QUERIES */
- /* ----------------------------------------------------*/
- /* Code That Doesnt Change Between Mobile Resolution */
- /* ----------------------------------------------------*/
- @media only screen and (min-width : 0px) and (max-width : 992px) {
- .innercont .body .buttoncontainer .ctabutton.but1 { width: 100%; margin-right: 0; }
- .innercont .body .buttoncontainer .ctabutton.but2 { width: 100%; margin-right: 0; }
- .innercont .body .buttoncontainer .ctabutton.but3 { width: 100%; margin-right: 0; }
- .innercont .body .column.c1 { width: 100%; margin-right: 0; }
- .innercont .body .column.c2 { width: 100%; padding: 0; }
- }
- /* ----------------------------------------------------*/
- /* 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.but1 { width: 100%; margin-right: 0; }
- .innercont .body .buttoncontainer .ctabutton.but2 { width: 100%; margin-right: 0; }
- .innercont .body .buttoncontainer .ctabutton.but3 { width: 100%; margin-right: 0; }
- }
Advertisement
Add Comment
Please, Sign In to add comment