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 */
- padding-left: 20%; /* size of side-nav */
- padding-bottom: 200px;
- background-color: #ffffff;
- float: left;
- width: 100%;
- box-sizing: border-box;
- }
- .innercont {
- position: relative;
- display: inline-block;
- float: left;
- padding: 5vh 5vw;
- width: 100%;
- 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: 40px;
- font-family: 'Work Sans';
- font-weight: 100;
- 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%;
- overflow-x: hidden;
- }
- .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 h1 {
- position: relative;
- font-size: 20px;
- font-family: sans-serif;
- font-weight: bold;
- color: #6b6b6b;
- margin: 7px 0;
- line-height: 25px;
- width: 100%;
- float: left;
- }
- .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;
- }
- .email-modal {
- position: fixed;
- display: inline-block;
- top: -100px;
- left: 50%;
- transform: translateX(-50%);
- width: 100%;
- max-width: 600px;
- padding: 10px 0 12px;
- box-sizing: border-box;
- z-index: 100;
- border-radius: 5px;
- animation: email_animation 5s 0.5s 1 normal forwards;
- }
- @keyframes email_animation {
- 0% { top: -100px; }
- 20% { top: 30px; }
- 80% { top: 30px; }
- 100% { top: -100px; }
- }
- .email-modal.email-successful { background-color: #8ec640; }
- .email-modal.email-unsuccessful { background-color: #e04040; }
- .email-modal h1 {
- position: relative;
- display: inline-block;
- width: 100%;
- color: #000000;
- font-family: sans-serif;
- font-weight: bolf;
- font-size: 12px;
- text-align: center;
- }
- .innercont .loadingbar {
- position: relative;
- display: inline-block;
- float: left;
- width: 100%;
- height: 20px;
- margin: 20px 0;
- background-color: #6c6c6c;
- border-radius:20px;
- }
- .innercont .loadingbar:after {
- content: '';
- position: absolute;
- display: inline-block;
- top: 0;
- left: 0;
- width: 0;
- height: 20px;
- background-color: #8ec640;
- border-radius:20px;
- transition: width 0.5s ease;
- }
- .innercont .loadingbar.step1:after { width: 33%; }
- .innercont .loadingbar.step2:after { width: 66%; }
- .innercont .loadingbar.step3:after { width: 100%; }
- .innercont .body .form-holder {
- position: relative;
- display: inline-block;
- width: 100%;
- max-width: 100%;
- overflow: hidden;
- }
- .innercont .body .form-slider {
- position: relative;
- display: inline-block;
- width: 400%;
- top: 0;
- }
- .innercont .body .form-holder .page {
- position: relative;
- display: inline-block;
- width: 25%;
- transition: left 0.5s ease;
- float: left;
- vertical-align: top;
- }
- .innercont .body .form h1 {
- font-size: 14px;
- font-family: sans-serif;
- font-weight: 600;
- color: #848484;
- }
- .innercont .body .form h1 .star {
- font-family: monospace;
- font-size: 17px;
- color: #da2626;
- }
- .innercont .body .form input,
- .innercont .body .form select {
- position: relative;
- display: inline-block;
- color: #8ec640;
- font-size: 13px;
- border: none;
- padding: 13px 5px;
- margin: 3px 0;
- background-color: #dfdfdf;
- border-radius: 2px;
- font-family: arial;
- box-sizing: border-box;
- float: left;
- width: 100%;
- }
- .innercont .body .form .insubmit {
- font-size: 14px;
- float: left;
- padding: 15px 40px;
- font-family: 'Raleway';
- margin-top: 10px;
- border: 2px solid #8ec640;
- background-color: #8ec640;
- color: #ffffff;
- width: 100%;
- cursor: pointer;
- transition: all 0.2s ease;
- }
- .innercont .body .form .insubmit:hover {
- background-color: #ffffff;
- color: #8ec640;
- }
- .innercont .body .form .ios_style { -webkit-appearance: none; }
- .innercont .body .form input:focus,
- .innercont .body .form input:valid,
- .innercont .body textarea:focus,
- .innercont .body textarea:valid {
- box-shadow: none;
- outline: none;
- background-position: 0 0;
- }
- .innercont .body textarea {
- float: middle;
- display: inline-block;
- resize: none;
- background-color: #dfdfdf;
- color: #8ec640;
- width: 100%;
- height: 200px;
- font-family: arial;
- font-size: 13px;
- padding: 13px 5px;
- box-sizing: border-box;
- border: 0;
- }
- .innercont .body .form .option_area {
- position: relative;
- display: inline-block;
- width: 200px;
- font-family: sans-serif;
- font-size: 15px;
- text-align: left;
- color: #aea9b1;
- font-size: 13px;
- border: none;
- padding: 0px 5px;
- margin: 3px 0;
- background-color: #dfdfdf;
- border-radius: 2px;
- font-family: arial;
- box-sizing: border-box;
- float: left;
- width: 100%;
- }
- .innercont .body .form .option_area .opt {
- position: relative;
- display: inline-block;
- width: auto;
- margin: 0 5px;
- padding: 10px 0 10px 5px;
- color: #676767;
- }
- .innercont .body .form .question-splitter {
- position: relative;
- display: inline-block;
- height: 0px;
- width: 100%;
- margin: 15px 0;
- }
- .innercont .body .form .option_area input {
- position:relative;
- display: inline-block;
- font-size: 13px;
- padding: 0;
- margin: 0;
- width: auto;
- }
- /*tooltip*/
- [data-tip] {
- position:relative;
- }
- [data-tip]:before {
- content:'';
- /* hides the tooltip when not hovered */
- display:none;
- content:'';
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-bottom: 5px solid #1a1a1a;
- position:absolute;
- top:30px;
- left:35px;
- z-index:8;
- font-size:0;
- line-height:0;
- width:0;
- height:0;
- }
- [data-tip]:after {
- display:none;
- content:attr(data-tip);
- position:absolute;
- top:35px;
- left:0px;
- padding:5px 8px;
- background:#1a1a1a;
- color:#fff;
- z-index:9;
- font-size: 0.75em;
- height:18px;
- line-height:18px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- white-space:nowrap;
- word-wrap:normal;
- }
- [data-tip]:hover:before,
- [data-tip]:hover:after {
- display:block;
- }
- .innercont .body .form .hiddencontainer {
- position: relative;
- display: inline-block;
- width: 100%;
- }
- .innercont .body .form .hiddencontainer.hidden {
- display: none;
- }
- .innercont .body .pagebuttons {
- position: relative;
- display: inline-block;
- float: left;
- width: 100%;
- }
- .innercont .body .fbtn {
- position: relative;
- display: inline-block;
- padding: 10px 20px;
- background-color: #8ec640;
- color: #ffffff;
- font-size: 14px;
- font-weight: bold;
- font-family: sans-serif;
- cursor: pointer;
- }
- .innercont .body .fbtn.back { float: left; }
- .innercont .body .fbtn.next { float: right; }
- .innercont .body .fbtn.hidden { visibility: hidden; }
- /* ----------------------------------------------------*/
- /* Code That Doesnt Change Between Mobile Resolution */
- /* ----------------------------------------------------*/
- @media only screen and (min-width : 0px) and (max-width : 992px) {
- }
- /* ----------------------------------------------------*/
- /* 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) {
- }
Advertisement
Add Comment
Please, Sign In to add comment