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

              
                This text is set in [JAF Bernina Sans](https://typekit.com/fonts/jaf-bernina-sans), backed up by a Verdana stack. It uses a Sass map to scope font-size and line-height measurements to those specific typefaces, [as Robin Rendle described](http://erskinedesign.com/blog/setting-typographic-scale-with-sass-maps/). (Em units and max-widths, too.) See the variables and mixins in <a href="https://codepen.io/timbrown/pen/xrwvJ" target="_blank">this other Pen</a>.

Look at this Pen's own CSS and you'll see what I really wanted to explore. The paragraph element uses Verdana (and its associated measurements) by default, and only uses Bernina (and *its* associated measurements) if Bernina has loaded properly. The wf-active class is via [Typekit font events](https://help.typekit.com/customer/portal/articles/6787-font-events). Progressive enhancement FTW.

When the composition widens and reaches a breakpoint, its size gets bumped up — again, considering Verdana by default and Bernina *only if Bernina is present*.

---

Tim Brown • [@nicewebtype](https://twitter.com/nicewebtype)
              
            
!

CSS

              
                p {
  @include font-scale(base);
  .wf-active & {
    @include font-scale(base, $font-bernina);
  }
  @include responsive(narrow-screens) {
    @include font-scale(text);
    .wf-active & {
      @include font-scale(text, $font-bernina);
    }
  }
}

body {
  margin: 2em;
  font-family: fontset-family($font-verdana);
  color: #444;
  @include responsive(narrow-screens) {
    margin: 2em 4em;
  }
}
              
            
!

JS

              
                
              
            
!
999px

Console