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

              
                <section>
  <h1 class="h2">Flat Button Styles</h1>
  
  <!-- Style Variations -->
  <p>Style variations:</p>
  <p>
    <button class="button-primary">Default</button>
    <button class="button-primary button-round">Default Round </button>
    <button class="button-primary-outlined">Outlined</button>
    <button class="button-primary-outlined button-round">Outlined Round</button>
    <button class="button-primary-text">Text</button>
  </p>
  
  <!-- Size Variations -->
  <p>Size variations:</p>
  <p>
    <button class="button-primary button-large">Large</button>
    <button class="button-primary">Standard</button>
    <button class="button-primary button-small">Small</button>
  </p>
  <p>
    <button class="button-primary button-large button-round">Large</button>
    <button class="button-primary button-round">Standard</button>
    <button class="button-primary button-small button-round">Small</button>
  </p>
  
  <!-- Color Variations -->
  <p>Color variations:</p>
  <p>
    <button class="button-success">Success</button>
    <button class="button-info">Info</button>
    <button class="button-warning">Warning</button>
    <button class="button-danger">Danger</button>
  </p>
  
  <!-- Extending the default classes -->
  <p>Extending the Default Classes:</p>
  <p>
    <button class="button-primary button-purple">Create a New Color</button>
  </p>
  <p>
    <button class="button-primary button-round button-shadow">Add a Shadow</button>
  </p>
</section>

<section>  
  <p class="h3"><strong>Get More</strong></p>
  <p>These are examples of button styles that are used in Mustard UI.  We like to think of it as a starter CSS framework that actually looks good.  We'd love to hear your feedback!</p>
  <p>See more examples of <a href="https://mustard-ui.com/docs/buttons">CSS Button Styles</a>.</p>
</section>
              
            
!

CSS

              
                /*
  CSS Styles Provided by Mustard UI
  https://mustard-ui.com
*/

// Adding a new button color
.button-purple {
  border-color: $color-purple-500;
  background-color: $color-purple-500;
}

// Adding a box shadow
.button-shadow {
  box-shadow: 0 2px 4px $color-gray-400;
}
              
            
!

JS

              
                
              
            
!
999px

Console