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

              
                <div class="loader">
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
</div>
              
            
!

CSS

              
                // Based on animated book cover by Henning Lederer http://www.led-r-r.net
// http://blog.presentandcorrect.com/cover-stars-2

body
  height: 100vh
  display: flex
  align-items: center
  justify-content: center
  background-color: darkcyan
 
.loader
   display: grid
   grid-template-columns: 1fr 1fr 1fr
   grid-gap: 8px
   
   div
     width: 60px
     height: @width
     position: relative
     display: flex
     justify-content: center
     align-items: center
     background-color: mediumaquamarine
     border-radius: 50%
     
     &:before,
     &:after
       content: ''
       width: 60px
       height: @width
       position: absolute
       border-radius: 50%

     &:before
       background-color: peachpuff
       animation: scale-1 2400ms linear infinite
     &:after
       background-color: mediumaquamarine
       animation: scale-2 2400ms linear infinite

     &:nth-child(2):before, &:nth-child(2):after
       animation-delay: 300ms
     &:nth-child(3):before, &:nth-child(3):after
       animation-delay: 600ms
     &:nth-child(4):before, &:nth-child(4):after
       animation-delay: 900ms
     &:nth-child(5):before, &:nth-child(5):after
       animation-delay: 1200ms
     &:nth-child(6):before, &:nth-child(6):after
       animation-delay: 1500ms
     &:nth-child(7):before, &:nth-child(7):after
       animation-delay: 1800ms
     &:nth-child(8):before, &:nth-child(8):after
       animation-delay: 2100ms
     &:nth-child(9):before, &:nth-child(9):after
       animation-delay: 2400ms
       
@keyframes scale-1
  0%
    transform: scale(0)
    z-index: 2
  50%,100%
    transform: scale(1)

@keyframes scale-2
  0%,50%
    transform: scale(0)
  100%
   transform: scale(1)
              
            
!

JS

              
                
              
            
!
999px

Console