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="box"></div>
</div>

<div class="container">
  <div class="box"></div>
  <div class="box"></div>
</div>

<div class="container">
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
</div>

<div class="container">
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
</div>

<div class="container">
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
</div>

<div class="container">
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
</div>
              
            
!

CSS

              
                // This is a list of all of our base 
// colors. we loop through this in
// order to get a rainbow of different
// palettes. Every color in this map
// corresponds to a row of cubes.
$colors: (
  #67c7d3
  #e6b25e
  #be69c1
  #77c860
  #cd668b
  #6c6ec6
);

// This is a "palette" of functions that lets us get
// a variant of a given base color.
@function pale($color) {
  // Used for the background.
  @return lighten( desaturate( $color, 10 ), 30 );
}
@function light($color) {
  // Used for the cube's top.
  @return lighten( saturate( $color, 25 ), 20 );
}
@function dark($color) {
  // Used for the cube's side.
  @return darken( desaturate( $color, 20 ), 12 );
}

.container {
  // This nasty little loop loops through all of our base colors
  // and plugs them into our palette of functions
  // to create a beautiful rainbow of floaty cubes.
  @for $i from 1 to length($colors) + 1 {
    
    // This variable is only used in this loop!
    // And it gets overridden with every
    // iteration of the loop!
    $c: nth($colors, $i);

    &:nth-child(#{$i}) {
      background: pale($c);

      .box {
        background: $c;

        &:before {
          background: light($c);
        }

        &:after {
          background: dark($c);
        }
      }
    }
  }

  min-height: 8em;

  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-around;
}

.box {
  font-size: 2vmin;

  width: 4em;
  height: 4em;

  position: relative;

  margin-top: 2em;
  margin-right: 2em;

  $anim-time: 1s;
  animation: float $anim-time ease-in-out infinite alternate;

  @for $i from 1 through length($colors) + 1 {
    $total: length($colors);
    
    // This nasty little block of code offsets
    // the animation for every nth item.
    // If you delete it, all the cubes move
    // in unison, which is way less fun to look at.
    &:nth-of-type(#{$total}n + #{$i}) {
      animation-delay: #{$anim-time / $total * $i * 2};
    }
  }

  &:before {
    // Draws the top of a cube.
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 50%;

    transform: translate(25%, -100%) skew(-45deg);
  }

  &:after {
    // Draws the side of a cube.
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;

    width: 50%;
    height: 100%;
    left: 100%;

    transform: translate(0, -25%) skew(0, -45deg);
  }
}

body {
  background: #eee;
  padding: 0;
  margin: 0;
}

@keyframes float {
  // Down...
  from {
    transform: translate(0, 0em);
  }
  
  // ...and up
  to {
    transform: translate(0, -0.75em);
  }
}
              
            
!

JS

              
                
              
            
!
999px

Console