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

              
                mixin subscribe-form
  form.subscribe-form
    input.subscribe-form__input(type='email' title="Email" placeholder="Email")
    +button: | Subscribe

mixin button
  button.button&attributes(attributes)
    block

mixin sidebar
  .sidebar&attributes(attributes)
    +subscribe-form

.site-container
  .main
  +sidebar

              
            
!

CSS

              
                /* site-container component file */
.site-container {
  display: grid;
  //IE doesn't support grid-gap
  grid-template-columns: 1fr 10px 300px;

  // context sensitive sidebar placement
  .sidebar {
    grid-column: 3;
  }
}

/* main component file */
.main {
  border: 1px dotted green;
}

/* sidebar component file */
.sidebar {

  // subscribe-form styles that only
  // apply when it is in the sidebar
  .subscribe-form {
    display: block;

    &__input {
      display: block;
      width: 100%;
      margin-bottom: 10px;
    }

    // Button styles that only apply
    // when it is both in the side bar
    // AND in the subscribe form
    .button {
      width: 100%;
    }
  }
}

/* subscribe-form component file */
.subscribe-form {
  display: grid;
  //Can't use grid-gap due to IE11 support
  grid-template-columns: 1fr 10px auto;
  border: 1px dotted #000;
  padding: 10px;

  &__input {
    border: 1px solid #000;
    padding: 10px;
  }

  // styling that only applies when the
  // button is in the subscribe form
  .button {
    grid-column: 3;
  }
}

/* button component file */
.button {
  /* styles that we want to appear on every button by default */
  padding: 10px;
  background: darkgreen;
  color: #fff;
  border: 0;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

/* resets file */
* {
  box-sizing: border-box;
}
              
            
!

JS

              
                
              
            
!
999px

Console