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

              
                .content.l-flexV--c
  p
    button#btn.b-menu
    button#jsBtn.b-menu
  label(for="btn") click
              
            
!

CSS

              
                body
  background-color #000
  color #fff
.content
  position fixed
  top 0
  left 0
  width 100%
  height 100%
.l-flexV--c
  display flex
  flex-flow column nowrap
  align-items center
  justify-content center
  
button
  border none
  outline none
  box-shadow none
  background none
  color currentColor
  padding 0
  cursor pointer

.b-menu
  width 25px
  height 25px
  position relative
  &:before,
  &:after
    content ' '
    position absolute
    background-color #fff
    display block
    width 100%
    height 3px
    left 0
    top 11px
    border-radius 3px
    transition all .5s
    transform-origin 50% 50%
  &:before
    transform translateY(-6px)
  &:after
    box-shadow 0 6px 0 0 #fff
  &:focus:before
    transform rotateZ(45deg) translateY(0)
  &:focus:after
    box-shadow 0 0 0 0 #fff
    transform rotateZ(135deg) translateY(0)
              
            
!

JS

              
                let btn = document.querySelector('#jsBtn')
let status = true
let focus = function () {
  setTimeout(() => {
    btn.focus()
    // status && blur()
 }, 2000)
}
let blur = function () {
  setTimeout(() => {
    btn.blur()
    status && focus()
  }, 2000)
}

focus()


              
            
!
999px

Console