Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="container">
  <div class="row">
    <div class="col-sm-12 col-md-8 col-md-offset-4 col-lg-6 col-lg-offset-3">
      <!-- Offset -->
      <div class="form-step-wrap">
          <div id="step1box" class="slider-step first-step step" data-next-step="step-mortgage-balance">
            <div class="row tall">

              <div class="col-xs-12 form-questions">
                <div class="row">
                  <div class="col-xs-12">
                    <label>Choose Loan Type</label>
                    <select id="loanpurpose" name="loanpurpose" tabindex="1" class="form-control">
                      <option> Home Purchase</option>
                      <option selected>VA Streamline Refinance</option>
                    </select>
                  </div>
                </div>
                <div class="row">
                  <div class="col-xs-12">
                    <label class="pad-top">Choose State</label>
                    <p id="state-error" class="input-error">Please Select State</p>
                    <select name="state" tabindex="2" class="form-control">
                      <option value="">Choose State...</option>
                      <option value="AL">Alabama</option>
                      <option value="AK">Alaska</option>
                      <option value="AZ">Arizona</option>
                      <option value="AR">Arkansas</option>
                      <option value="CA">California</option>
                      <option value="CO">Colorado</option>
                      <option value="CT">Connecticut</option>
                      <option value="DE">Delaware</option>
                      <option value="FL">Florida</option>
                    </select>
                  </div>
                </div>
              </div>
              <!-- /Form Questions -->
            </div>
            <!-- /Row -->
            <div class="row">

              <div class="col-xs-12 border">
                <input type='button' value='Continue' tabindex="3" class="btn-next btn-success form-control" />
              </div>
            </div>
          </div>
          <!-- Upper Text -->
          <div id="step-mortgage-balance" class="slider-step step" data-next-step="step-home-value" data-back-to="step1box">
            <div class="row">
              <div class="col-xs-12  ">
                <label class="streamline">Mortgage Balance</label>
                <p id="mortgagebalance-error" class="input-error">Please Select Mortgage Balance</p>
                <select name="mortgagebalance" class="form-control streamline" tabindex="4">
                  <option value="">Estimate Balance...</option>

                  <option>Option 1</option>
                  <option>Option 2</option>
                </select>
              </div>
            </div>
            <div class="row">
              <div class="col-xs-12">
                <input type='button' value='Continue' tabindex="5" class="btn-success form-control btn-next" />
              </div>
            </div>
            <div class="row">
              <div class="col-xs-12">
                <a class="btn-back">back</a>
              </div>
            </div>
          </div>
          <!-- Mortgage Balance -->
          <div id="step-home-value" class="slider-step step" data-next-step="step-interest-rate" data-back-to="step-mortgage-balance">
            <!-- Home Value -->
            <div class="row">
              <div class="col-xs-12  ">
                <label>Property Value</label>
                <p id="propertyvalue-error" class="input-error">Please Select Property Value</p>
                <select name="propertyvalue" class="form-control" tabindex="6">
                  <option value="">Estimate Value...</option>
                  <option>Option 1</option>
                  <option>Option 2</option>
                </select>
              </div>
            </div>
            <div class="row">
              <div class="col-xs-12">
                <input id="next-home-value" type='button' value='Continue' tabindex="7" class="btn-success form-control btn-next" />
              </div>
            </div>
            <div class="row">
              <div class="col-xs-12">
                <a id="back-home-value" class="btn-back">back</a>
              </div>
            </div>
          </div>
          <!-- /Home Value -->
          <div id="step-interest-rate" class="slider-step step" data-next-step="step-home-buy-process" data-back-to="step-home-value">
            <!-- Interest Rate -->
            <div class="row">
              <div class="col-xs-12  ">
                <label>Current Interest Rate</label>
                <p id="mortgagerate-error" class="input-error">Please Select Interest Rate</p>
                <select name="mortgagerate" class="form-control" tabindex="8">
                  <option value="3"   >Under 3.5%</option>
                  <option value="3.5" >3.50% - 3.74%</option>
                  <option value="3.75">3.75% - 3.99%</option>
                  <option value="4"   >4.00% - 4.24%</option>
                  <option value="4.25">4.25% - 4.49%</option>
                  <option value="4.5" >4.50% - 4.74%</option>
                  <option value="4.75">4.75% - 4.99%</option>
                  <option value="5"   selected='selected'>5.00% - 5.24%</option>
                  <option value="5.25">5.25% - 5.49%</option>
                  <option value="5.5" >5.50% - 5.74%</option>
                  <option value="5.75">5.75% - 5.99%</option>
                  <option value="6"   >6.00% - 6.49%</option>
                  <option value="6.5" >6.50% - 6.99%</option>
                  <option value="7"   >7.00% - 7.50%</option>
                  <option value="8"   >Over 7.5%</option>
                </select>
              </div>
            </div>
            <div class="row">
              <div class="col-xs-12">
                <input id="next-interest-rate" type='button' value='Continue' tabindex="9" class="btn-success form-control btn-next" />
              </div>
            </div>
            <div class="row">
              <div class="col-xs-12">
                <a id="back-interest-rate" class="btn-back">back</a>
              </div>
            </div>
          </div>
          <!-- /Interest Rate -->
          <div id="step-home-buy-process" class="slider-step step">
          <!-- Home Buy Process -->
          <div class="row">
            <div class="col-xs-12 ">
              <label class="purchase">Describe your home buying progress.</label>
              <p id="mortgagegoal-error" class="input-error">Please Select Home Buying Progress</p>
              <select name="mortgagegoal" class="form-control purchase" tabindex="10">
                <option value="">---Select---</option>
                <option value="signed_pa">I have a signed purchase agreement</option>
                <option value="offer_pending">I am in the process of making an offer on a home</option>
                <option value="buying_soon">I want to buy a home in the next few months</option>
                <option value="preapproval_letter">I need a pre-approval letter</option>
                <option value="researching">I want to buy a home 6 or more months from now</option>
              </select>
            </div>
          </div>
          <div class="row">
            <div class="col-xs-12">
              <input id="next-home-buy-process" type='button' value='Continue' tabindex="11" class="btn-success form-control btn-next" />
            </div>
          </div>
          <div class="row">
            <div class="col-xs-12">
              <a id="back-home-buy-process" class="btn-back">back</a>
            </div>
          </div>
        </div>

        <div class="clear"></div>
      </div>
      <!-- Offset -->
    </div>
  </div>
  <!-- Container Row -->
              
            
!

CSS

              
                body{
	overflow-x: hidden;
	background-color: #ECB539;
}
#form-step-wrap{
  position: relative;
  overflow-x: hidden;
	width: 100%;
}

/* Each Step */
.slider-step{
	box-shadow: 5px 5px 50px rgba(0,0,0,0.2);
	background-color: #fafafa;
	padding: 40px;
	position: absolute;
  width: 100%;
  right: -50%;
  top: 30px;
  opacity: 0;
  -webkit-transition:all, 0.3s linear;
  -moz-transition: all, 0.3s linear;
  -ms-transition: all, 0.3s linear;
  -o-transition: all, 0.3s linear;
  transition: all, 0.3s linear;
}

/* Show the 1st step */
.first-step{
  right: 0;
  opacity: 1;
}

/* Button */
.btn-next,
.btn-back{
	margin-top: 20px;
	display: block;
}

/* Animations Settings */
[data-anim="show-from--right"]{
  right: 0;
  opacity: 1;
}
[data-anim="show-from--left"]{
  right: 0;
  opacity: 1;
}
[data-anim="hide-to--right"]{
  right: -50%;
  opacity: 0;
}
[data-anim="hide-to--left"]{
  right: 50%;
  opacity: 0;
}

              
            
!

JS

              
                $(document).ready(function(){
 
  
   //Dynamic Next
  $(".btn-next").on("click", function(){
    nextStep = $("#" + $(this).parents(".slider-step").data("nextStep"));
    $(this).parents(".slider-step").attr("data-anim","hide-to--left");
    nextStep.attr("data-anim","show-from--right");
  });
  
  //Dynamic Back
  $(".btn-back").on("click", function(){
    backTo = $("#" + $(this).parents(".slider-step").data("backTo"));
    $(this).parents(".slider-step").attr("data-anim","hide-to--right");
    backTo.attr("data-anim","show-from--left");
  });
});
              
            
!
999px

Console