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

Save Automatically?

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

              
                .c
  %details 
    %summary About CodePen
    %p 
      %b CodePen 
      is an online community for testing and showcasing user-created HTML, CSS and JavaScript code snippets.
    %p 
      %b Founder(s): 
      Alex Vazquez, Tim Sabat, Chris Coyier
    %p 
      %b Date launched: 
      2012
    %p 
      %b Users: 
      330,000+
  %details 
    %summary How can I get involved?
    %p Please visit https://www.codepen.io
    %p Click 'Sign Up' at top right corner.
    %p Click create on the top right.
    %p Select 'pen', or 'post'.
    %p Thank me later.
              
            
!

CSS

              
                @import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700")
html
  background-color: #0d0d0d
  user-select: none
  
.c
  position: absolute
  top: 50%
  left: 50%
  transform: translate(-50%, -50%)
  
details
  color: white
  cursor: pointer
  font-family: 'roboto', arial
  font-weight: 300
  margin-bottom: 1vh
  width: 33vw
  summary
    background: linear-gradient(#333333, #1a1a1a)
    border-top-right-radius: 3px
    border-top-left-radius: 3px
    padding: 2.5vh
    font-size: 2.8vh
    &:focus
      outline: none
  p
    padding: 1.5vh
    font-size: 2.4vh
    margin: 0
    background-color: rgba(255,255,255,0.01)
    &:nth-child(odd)
      background-color: rgba(255,255,255,0.02)
    &:nth-last-child(1)
      border-bottom: 0.3vh solid #333333
              
            
!

JS

              
                
              
            
!
999px

Console