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

              
                .terminal
  p Hello World!
              
            
!

CSS

              
                @import url('https://fonts.googleapis.com/css?family=Fira+Sans:300');

html, body
  width 100%
  height 100%
  overflow hidden
  background rgba(150,100,225,1)
  font-family 'Fira Sans', sans-serif
  font-size 12px
*, *:before, *:after
  box-sizing border-box
.terminal, .terminal:before, .terminal:after, p:after
  position absolute
.terminal
  height 80vh
  width 80vw
  margin 10vh 10vw
  padding 26px 4px 4px
  border-radius 5px
  background linear-gradient( 
    #f6f6f6, 
    #d3d3d3 20px,
    #7e7e7e 20px,
    #7e7e7e 21px,
    #393456 21px)
  box-shadow 0 0 0 1px rgba(0,0,0,.25)
  transition all .5s ease
  &:before
    content " "
    width 10px
    height 10px
    margin -20px 0 0 5px
    border-radius 5px
    background #fc625d
    box-shadow:
      0 0 0 1px #de413e,
      15px 0 #fec041,
      15px 0 0 1px #dda035,
      30px 0 #35cc4b,
      30px 0 0 1px #28aa36
  &:after
    width 100%
    content "Pure CSS Terminal"
    top 0
    text-align center
    color #4c4c4c
    line-height 20px
p
  color #fff
  &:before
    content "$"
    margin-right 8px
    opacity .5
    line-height 18px
  &:after
    animation: blink 1s linear 1s infinite
    content " "
    width 8px
    height 18px
    margin-left 1px
    background #fec041
@keyframes blink
  0%
    background rgba(#fec041,0)
  50%
    background rgba(#fec041,0)
  51%
    background #fec041
  100%
    background #fec041
              
            
!

JS

              
                
              
            
!
999px

Console