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

              
                <div class="main">
  <div class="dark">
    <button class="raised neu"></button>
    <input type="text" class="sunken neu">
  </div>
  <div class="light">
    <button class="raised neu"></button>
    <input type="text" class="sunken neu">
  </div>
</div>
              
            
!

CSS

              
                $dark: #20222d
$light: #cfcebc
$shadow-light: rgba(255,255,255,0.05)
$shadow-dark: rgba(0,0,0,0.2)

body, html
  width: 100%
  height: 100%
  margin: 0
  overflow: hidden

.main
  display: flex
  flex-direction: row
  width: 100%
  height: 100%
  &>div
    display: flex
    flex-direction: column
    align-items: center
    justify-content: center
    flex: 1
    height: 100%
  
button
  border: none
  width: 250px
  height: 250px
  border-radius: 50%
  
input
  margin: 20px
  padding: 0 1rem
  border: none
  height: 50px
  line-height: 50px
  width: 20rem
  border-radius: 25px
  font-size: 2rem
  
.dark
  background-color: $dark
  &>button
    background-color: lighten($dark, 2%)
  &>input
    color: $light
    background-color: darken($dark, 2%)

.light
  background-color: $light
  &>button
    background-color: lighten($light, 5%)
  &>input
    color: $dark
    background-color: darken($light, 5%)
    
// Neumorphism proper
.neu
    &.raised
      box-shadow: -10px -10px 20px 0px $shadow-light, 10px 10px 20px 0px $shadow-dark
    
    &.sunken
      box-shadow: -5px -5px 20px 0px $shadow-light inset, 5px 5px 20px 0px $shadow-dark inset
              
            
!

JS

              
                
              
            
!
999px

Console