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

              
                .c-header 
  h2.c-header__title Page header
  p.c-header__tagline Nifty slogan
  nav.c-header__nav.c-nav
    ul.c-nav__list
      li.c-nav__item
        a(href="#").c-nav__link sub page
      li.c-nav__item
        a(href="#").c-nav__link sub page
      li.c-nav__item
        a(href="#").c-nav__link sub page
      
              
            
!

CSS

              
                //---------------//
// Mixins library 
//---------------//
// CSS Variables with fallback
@mixin var($property, $value, $fallback, $imp:null) {
  #{$property}: $fallback;
  #{$property}: var($value) $imp;
}
/*------------------------------------*\
		THEMER - abstracts/_themer.scss
\*------------------------------------*/
//1. text contrast
@function theme-text($color) {
	@if (lightness($color) > 55) {
		@return #222; // Lighter bg, return dark color
	}
	@else {
		@return #fff; // Darker bg, return light color
	}
}
//identify brand colour -- in production we actually  map get the colours from a list in settings, but let's not get diverted...
$brand: #f50;
// set fallback brand theme for ie11
//---------------//
$theme: $brand;
$theme-text: theme-text($brand);

// NOW, THEMEING CONVENTIONS OF THIS DESIGN

@mixin theme { //basically theme any block
    @include var(background-color, --theme, $theme);
    @include var(color, --theme-text, $theme-text);
}
@mixin monotheme { //return any block to black and white
    --theme: white;
    --theme-text: #222;
}
@mixin fliptheme { //flip any block
    @include var(color, --theme, $theme);
    @include var(background-color, --theme-text, $theme-text)
}

:root {
  --theme: #{$theme};
  --theme-text: #{$theme-text};
}
// you might generate theme classes here, see 

// END THEMER PARTIAL //
body {padding:1em; max-width:37.5em; color: currentColor;
  a {color: currentColor; text-decoration:none; &:hover,&:focus {text-decoration:underline}}
}
/*------------------------------------*\
		Header | components/_header.scss
\*------------------------------------*/

.c-header {
  font:100 2em Futura, sans-serif;
  padding:1em;
  @include theme;
  
  &__nav {@include fliptheme;}
}



              
            
!

JS

              
                
              
            
!
999px

Console