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

Save Automatically?

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

              
                link(href="https://fonts.googleapis.com/css?family=Merriweather+Sans:700",  rel="stylesheet", type="text/css")

div.quiver
  span.arrows.st
  span.arrows.nd
  span.arrows.rd
  span.arrows.th
  span.arrows.fth
  span.loading Loading
              
            
!

CSS

              
                @import compass

.quiver
  position: fixed
  bottom: 50%
  left: 50%
  z-index: 899
  margin-bottom: -50px
  margin-left: -50px
  width: 100px
.arrows
  @include animation(equalizor cubic-bezier(0.77, 0, 0.175, 1) .5s alternate-reverse infinite)
  vertical-align: baseline
  display: inline-block
  width: 0
  height: 0
  border-style: solid
  border-width: 0 10px 1px 10px
  border-color: rgba(255,255,255,0) rgba(255,255,255,0) #0B486B rgba(255,255,255,0)
.st
  border-bottom-color: #0B486B
.nd
  border-bottom-color: #3B8686
.rd
  border-bottom-color: #79BD9A
.th
  border-bottom-color: #A8DBA8
.fth
  border-bottom-color: #CFF09E
  
@for $i from 1 through 5 
  span 
    &:nth-child(#{$i})
      @include animation-delay(#{(($i)-1)/10}s)


// Anim
@include keyframes(equalizor)
  from
    border-bottom-width: 60px
  to
    border-bottom-width: 1px
  

// Misc
*
  @include backface-visibility(hidden)
html, body
  background-color: #141517
  height: 100%
  margin: 0
.loading
  display: block
  font: normal 22px/1em "Merriweather Sans", sans-serif
  text-transform: uppercase
  color: #CFF09E
  
// Credits
// Gorgeous colour palette by Skyblue2u on COLOURlovers
// http://www.colourlovers.com/palette/580974/Adrift_in_Dreams
              
            
!

JS

              
                
              
            
!
999px

Console