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

              
                .frame
  .lines
  .angles
  article
    p Hover me
              
            
!

CSS

              
                $ease-in-out-quad = cubic-bezier(0.455, 0.03, 0.515, 0.955)
$color-grey = #A6AFC0
$color-off-white = #34495E

body
  background-color #2c3e50
  margin 0
  padding 0
  width 100%
  height 100%

  .frame
    display inline-block
    position absolute
    top 50%
    left 50%
    transform translate(-50%, -50%)

  // THE MAGIC STARTS HERE
  .lines
    background:
      linear-gradient(to bottom, $color-off-white 2px, transparent 2px) 0 0, // TOP LEFT TO TOP RIGHT
      linear-gradient(to right, $color-off-white 2px, transparent 2px) 0 100%, // BOTTOM LEFT TO TOP LEFT
      linear-gradient(to left, $color-off-white 2px, transparent 2px) 100% 0, // TOP RIGHT TO BOTTOM RIGHT
      linear-gradient(to top, $color-off-white 2px, transparent 2px) 100% 100%; // BOTTOM RIGHT TO TOP RIGHT
    background-repeat no-repeat
    background-size 0px 0px
    position absolute
    top 0
    right 0
    bottom 0
    left 0
    transition background-size 0.2s $ease-in-out-quad

  .angles
    background:
      linear-gradient(to right, $color-grey 2px, transparent 2px) 0 0, // TOP LEFT
      linear-gradient(to bottom, $color-grey 2px, transparent 2px) 0 0, // TOP LEFT
      linear-gradient(to left, $color-grey 2px, transparent 2px) 100% 0, // TOP RIGHT
      linear-gradient(to bottom, $color-grey 2px, transparent 2px) 100% 0, // TOP RIGHT
      linear-gradient(to left, $color-grey 2px, transparent 2px) 100% 100%, // BOTTOM RIGHT
      linear-gradient(to top, $color-grey 2px, transparent 2px) 100% 100%, // BOTTOM RIGHT
      linear-gradient(to right, $color-grey 2px, transparent 2px) 0 100%, // BOTTOM LEFT
      linear-gradient(to top, $color-grey 2px, transparent 2px) 0 100%; // BOTTOM LEFT
    background-repeat no-repeat
    background-size 7px 7px
    position absolute
    top 0
    right 0
    bottom 0
    left 0
    opacity 0.48
    transition background-size 0.2s $ease-in-out-quad

  &:hover
    .lines
      background-size 100% 100%

    .angles
      background-size 14px 14px
  // THE MAGIC ENDS HERE

  article
    padding 13px
    display flex
    justify-content center
    align-items center
    width 500px
    height 400px
    position relative
    cursor pointer

    &:before
      content ''
      background-color rgba(#FFFFFF, 0.08)
      opacity 0.46
      position absolute
      top 13px
      right 13px
      bottom 13px
      left 13px
      transition all 0.2s $ease-in-out-quad

    &:hover:before
      top 21px
      right 21px
      bottom 21px
      left 21px

  p
    font-family sans-serif
    font-size 14px
    text-transform uppercase
    color #FFFFFF
    position relative
              
            
!

JS

              
                
              
            
!
999px

Console