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

              
                //Try to resize
.box
  .sepal
    .petal.petal--horizontal
    .petal.petal--vertical
    .petal.petal--diagonal
    .petal.petal--diagonal-reversed
    .lotus
              
            
!

CSS

              
                @import "nib"

/* **************
   Quick Reset
************** */
html
  box-sizing border-box
html
body
  margin 0
  padding 0
  height 100%
  overflow hidden
body
  background #F15928
  display flex
  align-items center
  justify-content center
*
*:before
*:after
  box-sizing inherit

/* **************
   Style
************** */
.box
  width 50vmin
  height 50vmin
.sepal
  width 100%
  height 100%
  position relative
  &:hover
    .petal--horizontal
    .petal--vertical
    .petal--diagonal
    .petal--diagonal-reversed
      animation-play-state paused
.petal
  width 100%
  height 100%
  position absolute
  top 0
  right 0
  bottom 0
  left 0
  background-color #fff  
  border 5vmin solid #550424
  box-shadow 6px 6px 0px 0px rgba(0,0,0,.1)
  animation-play-state running
  &--horizontal
    border-radius 0 100%
    transform rotateZ(45deg)
    animation-name rotating45
    animation-duration 6s
    animation-timing-function linear
    animation-delay 0s
    animation-iteration-count infinite
    animation-direction normal
    animation-fill-mode none
    animation-play-state running
  &--vertical
    border-radius 100% 0
    transform rotateZ(45deg)
    animation-name rotating45
    animation-duration 6s
    animation-timing-function linear
    animation-delay 0s
    animation-iteration-count infinite
    animation-direction normal
    animation-fill-mode none
    animation-play-state running
  &--diagonal
    border-radius 100% 0
    animation-name rotating--reverse
    animation-duration 6s
    animation-timing-function linear
    animation-delay 0s
    animation-iteration-count infinite
    animation-direction normal
    animation-fill-mode none
    animation-play-state running
  &--diagonal-reversed
    border-radius 0 100%
    animation-name rotating--reverse
    animation-duration 6s
    animation-timing-function linear
    animation-delay 0s
    animation-iteration-count infinite
    animation-direction normal
    animation-fill-mode none
    animation-play-state running
.lotus
  width calc(50% + 5vmin)
  height calc(50% + 5vmin)
  position absolute
  top 0
  right 0
  bottom 0
  left 0
  margin auto
  border 5vmin solid #550424
  border-radius 50%
  background #F8A444
  background linear-gradient(135deg, #F69637 0%, #F69637 50%, #F8A444 50%, #F8A444 100%)
  &:before
    content ''
    position absolute
    width 40%
    height 40%
    background-color #fff
    top 0
    right 0
    bottom 0
    left 0
    margin auto
    border-radius 50%
    border 5vmin solid #550424
  &:after
    content ''
    position absolute
    width 5vmin
    height 5vmin
    background-color #fff
    top -5vmin
    right -5vmin
    bottom 0
    left 0
    margin auto
    border-radius 50%
    background #F8A444
    background linear-gradient(135deg, #F69637 0%, #F69637 50%, #F8A444 50%, #F8A444 100%)
    
@keyframes rotating45
  from
    transform rotate(45deg)
  to
    transform rotate(405deg)
@keyframes rotating
  from
    transform rotate(0deg)
  to
    transform rotate(360deg)
@keyframes rotating--reverse
  from
    transform rotate(360deg)
  to
    transform rotate(0deg)
    
              
            
!

JS

              
                /*
Inspired by https://dribbble.com/shots/2029223-Lotus-eye
*/
              
            
!
999px

Console