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

              
                input(type="checkbox",id="menu")
nav
  a Foo
  a Bar
  a Lorem
  a Ipsum
label(for="menu").burger
  .burger-bun
  .burger-meat
  .burger-bread
              
            
!

CSS

              
                //boilerplate
*
  box-sizing:border-box
body
  margin:0
//actual code

navHeight = 3em

nav
nav a
.burger-bun
.burger-meat
.burger-bread
  transition:.3s cubic-bezier(.45,0,.4,1.38)
nav
  background:red
  padding-top: navHeight
  transform:"translateY( calc( %s - 100% ) )" % navHeight
nav:after //clearfix
  content: ""
  display: table
  clear: both
nav a,.burger
  display:block
  padding:0 1em
  line-height:navHeight
  text-align:center
nav a
  float:left
.burger
  position:absolute
  top:0
  right:0
  width:3.5em
  margin-top: "calc( ( %s - 1.75em ) / 2 )" % navHeight
  cursor:pointer
  display:none
@media(max-width:1500px)
  nav a
    float:none
    opacity:0
  .burger
    display:block
  
.burger-bun
.burger-meat
.burger-bread
  border-top:solid .25em
  margin:.25em 0
#menu
  display:none
#menu:checked~nav
  transform:translateY( "-%s" % navHeight )
  a
    opacity:1
#menu:checked~.burger
  .burger-bun
    transform: translateY(.5em) rotate(45deg)
  .burger-meat
    transform: scaleX(0.1)
  .burger-bread
    transform: translateY(-.5em) rotate(-45deg)
              
            
!

JS

              
                
              
            
!
999px

Console