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

              
                .group  
  .bigSqr
    .square.first
    .square.second
    .square.third
    .square.fourth
  .text loading
              
            
!

CSS

              
                $blue: #0AE
$wht: #FFF

@import url('https://fonts.googleapis.com/css?family=Roboto:100,400')

body
  background: $blue
  text-align: center
  line-height: 100vh

.group
  position: relative
  display: inline-block
  line-height: 16px
  
.bigSqr
  position: relative
  display: inline-block
  width: 40px
  height: 40px
  overflow: hidden
  transform-origin: bottom left
  animation: bigSqrShrink 1s linear infinite
  
.square
  position: absolute
  width: 20px
  height: 20px
  background: $wht
  
.first
  left: 0px
  top: 20px
  
  
.second
  left: 20px
  top: 20px
  animation: drop2 1s linear infinite
  
.third
  left: 0px
  top: 0px
  animation: drop3 1s linear infinite
  
.fourth
  left: 20px
  top: 0px
  animation: drop4 1s linear infinite
  
.text
  line-height: 16px
  font-family: "Open Sans","Roboto",Arial , sans-serif
  font-weight: 400
  color: $wht
  display: block
  margin: 10px auto
  padding: 3px
  
@keyframes bigSqrShrink
  0%
    transform: scale(1)
  90%
    transform: scale(1)
  100%
    transform: scale(0.5)
  
@keyframes drop2
  0%
    transform: translateY(-50px)
  25%
    transform: translate(0)
  100%
    transform: translate(0)
    
@keyframes drop3
  0%
    transform: translateY(-50px)
  50%
    transform: translate(0)
  100%
    transform: translate(0)
 
@keyframes drop4
  0%
    transform: translateY(-50px)
  75%
    transform: translate(0)
  100%
    transform: translate(0)
  


              
            
!

JS

              
                // Nup
              
            
!
999px

Console