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="mdl-layout__container">
  <div class="mdl-grid mdl-grid__max-width">
    <div class="mdl-card mdl-card__wide mdl-shadow--4dp">
      <div class="mdl-card__title mdl-color--accent">
        <h2 class="mdl-card__title-text">Functional App</h2>
      </div>
      <div id="post-container" class="mdl-card__supporting-text">
        <div class="mdl-progress mdl-js-progress mdl-progress__indeterminate"></div>
      </div>
    </div>
  </div>
</div>
              
            
!

CSS

              
                .mdl-layout {
  &__container {
    margin-top: 2em;
    margin-bottom: 2em;
  }
}

.mdl-grid {
  &__max-width {
    max-width: 640px;
    margin: auto;
  }
}
.mdl-card {
  &__wide {
    width: 100%;
  }
}

              
            
!

JS

              
                const {curry, compose, map} = R
// pure
const url      = "https://www.avanzu.de/wp-json/wp/v2"
const postsUrl = _ => `${url}/posts`
const join     = x => x.join('')
const prop     = s => obj => obj[s]
const theTitle = compose(prop('rendered'), prop('title'))
const span     = s => `<span class="mdl-list__item-primary-content">${s}</span>`
const li       = s => `<li class="mdl-list__item">${s}</li>`
const ul       = s => `<ul id="post-list" class="mdl-list">${s}</ul>`
const listItem = compose(li, span)
// impure 
const fetchJson  = fn => url => $.getJSON(url).then(fn)
const setHtml    = el => html => $(el).html(html)
const inspect    = label => x => (console.log(label, x), x)
// specialization 
const updatePostContainer = setHtml('#post-container')
const titleToList = map(compose(listItem,theTitle))
// app composition 
const render       = compose(updatePostContainer, ul, join, titleToList)
const executeApp   = compose(fetchJson(render), postsUrl)
// run the app
executeApp()
              
            
!
999px

Console