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

              
                .textbox
  input#email[type="email" required="/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)?$/i"]
  label[for="email"] Email Address
  .error Invalid email address
  .info
    .tooltip Email address including domain

.textbox
  input#password[type="password" required]
  label[for="password"] Password
  .error Invalid password
  .info
    .tooltip Minimum 8 characters: 0-9 A-Z

.textbox
  input#disabled[type="email" disabled]
  label[for="disabled"] Disabled
  .info
    .tooltip This one is disabled
              
            
!

CSS

              
                $red = #F44336
$blue = #2196F3
$green = #4CAF50

body
  margin 0
  font-family 'Open Sans', sans-serif

input
  outline 0
  border 0
  display block

.textbox
  display block
  max-height 48px
  padding 20px 8px 4px 8px
  width 264px
  height 48px
  position relative
  input[type="text"],
  input[type="url"],
  input[type="tel"],
  input[type="number"],
  input[type="color"],
  input[type="email"],
  input[type="password"]
    width 256px
    padding 8px 4px 6px 4px
    font-size 1.2em
    //background #fff
    background rgba(0,0,0,0)
    color rgba(0,0,0,.67)
    //box-shadow 0 -16px white
    border-bottom 1px solid rgba(0,0,0,.4)
    &:disabled
      border-bottom 2px dotted rgba(0,0,0,.4)
      ~ label
        color rgba(0,0,0,.4)
    ~ label
      font-size 1.2em
      color rgba(0,0,0,.67)
      display block
      position absolute
      top 24px
      left 12px
      pointer-events none
      margin-right 12px
      transition all .2s
    ~ .error
      position absolute
      bottom -5px
      left 16px
      color rgba(0,0,0,0)
      font-size .8em
      pointer-events none
      transition all .2s
      &:before
        content ''
        display block
        width 0
        height 2px
        background $blue
        position absolute
        top -3px
        left -8px
        margin-left 132px
        visibility visible
        transition all .2s
    &:not([value=""])
      ~ label
        font-size .8em
        top 8px
    &:focus
      ~ label
        font-size .8em
        top 8px
      ~ .error
        &:before
          width 264px
          margin 0
    &:invalid:not(:focus):not([value=""])
      ~ .error
        color $red
        &:before
          margin 0
          width 264px
          background $red
    &:valid:not(:focus)
      ~ .error
        &:before
          margin 0
          width 264px
          background $green
    ~ .info
      position absolute
      top 16px
      right 12px
      width 24px
      height 24px
      margin 8px -16px 8px 8px
      padding 0 16px 0 0
      border-radius 100%
      color rgba(0,0,0,.67)
      cursor pointer
      transition all .2s
      .tooltip
        width auto
        max-width 256px
        position absolute
        top -6px
        right 24px
        transform translateX(100%) scale(.8)
        background rgba(0,0,0,.9)
        color rgba(255,255,255,.9)
        padding 8px
        border-radius 2px
        white-space pre
        font-size .8em
        visibility hidden
        opacity 0
        transition all .2s
        &:before
          content ''
          display block
          position absolute
          top 9px
          left -10px
          border-style solid
          border-width 8px 10px 8px 0
          border-color transparent rgba(0,0,0,.9) transparent transparent
          z-index -1
      &:hover
        color rgba(0,0,0,.9)
        .tooltip, /.tooltip:hover
          visibility visible
          opacity 1
          right 0
          transform translateX(100%)
    &:disabled
      ~ .info
        color rgba(0,0,0,.4)
        .tooltip
          background rgba(0,0,0,.67)
          &:before
            border-color transparent rgba(0,0,0,.67) transparent transparent
        &:hover
          color rgba(0,0,0,.67)
              
            
!

JS

              
                $('.textbox input').attr('value', "")
$('.textbox input').attr('onkeyup', "this.setAttribute('value', this.value);")
$('.textbox .info').append('<i class="material-icons">info</i>')
              
            
!
999px

Console