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='card'>
  <h1>
    Edoardo L'Astorina
  </h1>
  <img src='http://0.gravatar.com/avatar/c88fdd33c5a3a417782e94a0774cee15?s=200&#038;d=mm&#038;r=g'>
  <p class='bio'>
    Edoardo L'Astorina has 8 years of experience in software development. He has had a major role in the new Transport for London site and has developed sites and apps for JPC, The Crocodile and Miura. Edoardo started Blu Frame to help companies develop sites that stand out, load fast and are easy for users to access. Edoardo is passionate about risotto, Terrence Malick movies, Oasis songs and rowing
  </p>
</div>
              
            
!

CSS

              
                @import compass

@import url(https://fonts.googleapis.com/css?family=Roboto+Slab|Raleway)
@import url(https://fonts.googleapis.com/css?family=Merriweather+Sans:300)

*
  box-sizing: border-box

body
  background-color: #FFF245

.card
  width: 380px
  margin: 20px auto 10px auto
  background-color: #fff
  color: #444
  overflow: hidden // clearfix
  
  h1
    margin: 0
    padding: 10px 0
    text-align: center
    font:
      family: Raleway
      weight: 700
      size: 22px
    background-color: #5FD9FF
    animation: fadein 1.2s
    color: #fff
    
  img
    float: left
    width: 140px
    height: 140px
    margin: 20px
    position: relative
    z-index: 1
    animation: grow 0.6s
    
  .bio
    position: relative
    margin: 20px
    font:
      family: Raleway
      weight: 400
      size: 15px
    line-height: 18px
    animation: slidein 1.2s
      
@keyframes fadein
  from
    color: rgba(0, 0, 0, 0)
  to
    color: rgba(255, 255, 255, 1)

@keyframes grow
  from
    transform: scale(0)
  80%
    transform: scale(1.1)
  to
    transform: scale(1)

@keyframes slidein
  from
    opacity: 0
  49.9%
    opacity: 0
  50%
    left: -240px
  to
    left: 0

.comment
  font:
    family: Merriweather Sans
    size: 12px
  color: #ddd
  text-align: center
              
            
!

JS

              
                /*
  Developed with love by Blu Frame

  http://blufra.me  
*/
              
            
!
999px

Console