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

              
                <html lang="en">
<head>
  <meta charset="UTF-8" />
  <title>Sublime Text Loader</title>
</head>
<body style="background:#222;">
  <div class="st-loader"><span class="equal"></span></div>
</body>
</html>
              
            
!

CSS

              
                @import compass


// settings
$loaderWidth : 10em
$loaderColor : #f80
$duration : 1.5s

// computations
$loaderHeight : $loaderWidth/4
$marginLeft : $loaderWidth/2
$marginTop : $loaderHeight/2
$insideWidth : $loaderWidth/6
$insideHeight : $loaderWidth/10
$borders : $loaderWidth/40
$position : $loaderWidth/13

// animation
+keyframes(loading)
  0%
    left: 0
  50%
    left: $loaderWidth - $insideWidth
  100%
    left: 0

// styles
.st-loader
  width: $loaderWidth
  height: $loaderHeight
  position: absolute
  top: 50%
  left: 50%
  margin: -$marginTop 0 0 (-$marginLeft)
  box-sizing: border-box

.st-loader:before,
.st-loader:after
  content: ''
  display: block
  position: absolute
  top: 0
  bottom: 0
  width: $marginTop
  box-sizing: border-box
  border: $borders solid $loaderColor

.st-loader:before
  left: -$position
  border-right: 0

.st-loader:after
  right: -$position
  border-left: 0

.st-loader .equal
  display: block
  position: absolute
  top: 50%
  margin-top: -$insideHeight/2
  left: $marginLeft - $insideWidth/2 // centered if no animation
  height: $insideHeight
  width: $insideWidth
  border: $borders solid $loaderColor
  box-sizing: border-box
  border-width: $borders 0
  +animation(loading $duration infinite ease-in-out)

              
            
!

JS

              
                
              
            
!
999px

Console