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="container">
  <div class="post">
    <div class="avatar"></div>
    <div class="line"></div>
    <div class="line"></div>
  </div>

  <div class="post">
    <div class="avatar"></div>
    <div class="line"></div>
    <div class="line"></div>
  </div>

  <div class="post">
    <div class="avatar"></div>
    <div class="line"></div>
    <div class="line"></div>
  </div>
</div>
              
            
!

CSS

              
                // forked from https://codepen.io/viktorstrate/pen/yoBRLy

$base-color: #F4F4F4
$shine-color: rgba(229,229,229,0.8) 
$animation-duration: 2.0s
$avatar-offset: 52 + 16

// this unfortunately uses set px widths for the background-gradient, I never got around to changing it to work with all widths :(
@mixin background-gradient
  background-image: linear-gradient(90deg, $base-color 0px, $shine-color 40px, $base-color 80px) 
  background-size: 600px
  
body
  margin: 0

.container
  height: 100vh
  display: flex
  flex-direction: column
  justify-content: center
  align-items: center
  
.post
  width: 220px
  height: 80px
  
  .avatar
    float: left
    width: 52px
    height: 52px
    background-color: #ccc
    border-radius: 25%
    margin: 8px
    
    @include background-gradient
    animation: shine-avatar $animation-duration infinite ease-out
    
  .line
    float: left
    width: 140px
    height: 16px
    margin-top: 12px
    border-radius: 7px
    
    @include background-gradient
    animation: shine-lines $animation-duration infinite ease-out
    
  .avatar + .line
    margin-top: 11px
    width: 100px
    
  .line ~ .line
    background-color: #ddd
 
@keyframes shine-lines
  0%
    background-position: -100px
  
  40%, 100%
    background-position: 140px

@keyframes shine-avatar
  0%
    background-position: -100px + $avatar-offset
  
  40%, 100%
    background-position: 140px + $avatar-offset

              
            
!

JS

              
                
              
            
!
999px

Console