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="tbl">
  <div class="cell">
    <a href="https://twitter.com/home?status=https%3A%2F%2Fcdpn.io%2FqOeyOx" target="_blank" class="tweet">
      <i></i>
      <span>Tweet</span>
    </a>
  </div>
</div>
              
            
!

CSS

              
                html, body
  height 100%

*
  box-sizing border-box

.tweet
  position relative
  display inline-block
  height 20px
  padding 0 6px
  color #fff
  cursor pointer
  background-color #1b95e0
  border-radius 3px
  box-sizing border-box
  text-decoration none
  transition background-color .2s ease
  //transform scale(1)
  i
    position relative
    top 4px
    display inline-block
    vertical-align top
    width 18px
    height 11px
    background-image url("http://andreasstorm.com/lib/tweet.svg")
    background-repeat no-repeat
    background-position 0 0
    background-size 144px 11px  
  span
    position relative
    top 4px
    left -2px
    vertical-align top
    font-family 'Helvetica Neue', Arial, sans-serif
    font-weight 500
    font-size 11px
  &:hover
    background-color #0c7abf
    i
      animation tweet .6s steps(7) infinite

.tbl
  display table
  width 100%
  height 100%

.cell
  display table-cell
  vertical-align middle
  text-align center

@keyframes tweet
  100%
    background-position -126px 0
              
            
!

JS

              
                // Not allowed: 

// more -> https://about.twitter.com/company/brand-assets
              
            
!
999px

Console