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

              
                .demo
 - 5.times do
  .circle
   .inner
   
%a{ :href => "http://mattroelle.com" } mattroelle.com
              
            
!

CSS

              
                $ncirc: 2
$color: #0fa

@import url(https://fonts.googleapis.com/css?family=Lato)
$font-stack: 'Lato', sans-serif

a
  position: fixed
  bottom: 2%
  display: block
  text-align: center
  color: $color
  font-family: $font-stack
  text-decoration: none !important
  width: 100%
  
body, html
  width: 100%
  height: 100%
  overflow: hidden
    
body
  background: linear-gradient(90deg, darken($color, 15%), darken($color, 8%))
  box-shadow: inset 0px 0px 90px rgba(0, 0, 0, 0.5)
  margin: 0px
  padding: 0px

.demo
  width: 100px
  height: 102px
  border-radius: 100%
  position: absolute
  top: 45%
  left: calc(50% - 50px)
    
.circle
  width: 100%
  height: 100%
  position: absolute
  .inner
    width: 100%
    height: 100%
    border-radius: 100%
    border: 5px solid transparentize($color, 0.3)
    border-right: none
    border-top: none
    backgroudn-clip: padding
    box-shadow: inset 0px 0px 10px transparentize($color, 0.85)
    
@keyframes spin
  from
    transform: rotate(0deg)
  to
    transform: rotate(360deg)
      
@for $i from 0 through $ncirc  
  .circle:nth-of-type(#{$i})
    transform: rotate($i * 70deg)
    .inner
      animation: spin 2s infinite linear
        
.demo
  animation: spin 5s infinite linear
              
            
!

JS

              
                
              
            
!
999px

Console