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

              
                .card
  %h1
    Luke Skywalker
  %img{src: "http://static.wix.com/media/9173d6_b6e7d7a2d6e92e1a1da9aefda77fa7d7.jpg_256"}
  %p.bio
    Luke Skywalker was the son of Anakin Skywalker and Padmé Amidala, and the older twin brother of Leia Organa Solo. He was a Jedi Master and hero of the Galactic Civil War. A celebrated pilot and leader, Skywalker was most famous for destroying the first Death Star and prompting Darth Vader to kill Emperor Palpatine, which led to the eventual downfall of the Galactic Empire.

.comment
  If you didn't catch the animation, hit Cmd + Shift + 5 or refresh the page :)
              
            
!

CSS

              
                @import compass

@import url(https://fonts.googleapis.com/css?family=Roboto+Slab)
@import url(https://fonts.googleapis.com/css?family=Merriweather+Sans:300)

*
  box-sizing: border-box

body
  background-color: #2C2D3D

.card
  width: 600px
  margin: 40px auto
  background-color: #F7F7E9
  color: #444
  overflow: hidden // clearfix
  box-shadow: 5px 5px 0 0 #aaa
  
  h1
    margin: 0
    padding: 20px
    text-align: center
    font:
      family: Roboto Slab
      weight: 400
    background-color: #4DD65F
    animation: fadein 1.2s
    
  img
    float: left
    width: 200px
    height: 200px
    margin: 20px
    position: relative
    z-index: 1
    animation: grow 0.6s
    
  .bio
    position: relative
    margin: 20px
    font-family: Merriweather Sans
    animation: slidein 1.2s
      
@keyframes fadein
  from
    color: hsla(0, 0, 0, 0)
  to
    color: inherit

@keyframes grow
  from
    transform: scale(0)
  80%
    transform: scale(1.1)
  to
    transform: scale(1)

@keyframes slidein
  from
    opacity: 0
  49.9%
    opacity: 0
  50%
    left: -240px
  to
    left: 0

.comment
  font:
    family: Merriweather Sans
    size: 12px
  color: #ddd
  text-align: center
              
            
!

JS

              
                
              
            
!
999px

Console