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

              
                form
  header Login
  label Username <span>*</span>
  input
  .help At least 6 character
  label Password <span>*</span>
  input
  .help Use upper and lowercase lettes as well
  button Login
              
            
!

CSS

              
                html, body
  border: 0
  padding: 0
  margin: 0
  height: 100%
  
body
  background: tomato
  display: flex
  justify-content: center
  align-items: center
  font-size: 16px
  
form
  background: white
  width: 40%
  box-shadow: 0px 0px 20px rgba(#000, .7)
  font-family: lato
  position: relative
  color: #333
  border-radius: 10px
  
  header
    background: #FF3838
    padding: 30px 20px
    color: white
    font-size: 1.2em
    font-weight: 600
    border-radius: 10px 10px 0 0
  
  label
    margin-left: 20px
    display: inline-block
    margin-top: 30px
    margin-bottom: 5px
    position: relative
    
    span
      color: #FF3838
      font-size: 2em
      position: absolute
      left: 2.3em
      top: -10px
    
    
  input
    display: block
    width: 78%
    margin-left: 20px
    padding: 5px 20px
    font-size: 1em
    border-radius: 3px
    outline: none
    border: 1px solid #ccc
    
  .help
    margin-left: 20px
    font-size: 0.8em
    color: #777
    
  button
    position: relative
    margin-top: 30px
    margin-bottom: 30px
    left: 50%
    transform: translate(-50%, 0)
    font-family: inherit
    color: white
    background: #FF3838
    outline: none
    border: none
    padding: 5px 15px
    font-size: 1.3em
    font-weight: 400
    border-radius: 3px
    box-shadow: 0px 0px 10px rgba(#333, 0.4)
    cursor: pointer
    transition: all 0.15s ease-in-out
    
    &:hover
      background: lighten(#FF3838, 5)

    
    
  
              
            
!

JS

              
                
              
            
!
999px

Console