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 id="wrap">
  <header class="header">
    <nav class="nav">
      <a href="#wrap" id="open">
        <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="34px" height="27px" viewBox="0 0 34 27" enable-background="new 0 0 34 27" xml:space="preserve">
<rect fill="#FFFFFF" width="34" height="4"/>
<rect y="11" fill="#FFFFFF" width="34" height="4"/>
<rect y="23" fill="#FFFFFF" width="34" height="4"/>
</svg>
      </a>
      <a href="#" id="close">×</a>
      <h1><a href="#">typo~typo</a></h1>
      <a href="#">Helvetica</a>
      <a href="#">Times New Roman</a>
      <a href="#">Garamond</a>
      <a href="#">Didot</a>
      <a href="#">Franklin Gothic</a>
      <a href="#">à propos</a>
    </nav>
  </header>
  <main class="main">
    <h1>Helvetica</h1>
    <p>Helvetica est une police de caractères linéale sans empattement (en anglais, sans serif) créée en 1957 par Max Miedinger qui l'a dessinée dans un objectif précis : atteindre l'harmonie optique la plus aboutie possible. Symbole de la typographie suisse,
      cette police d'une grande lisibilité avec son tracé d'une grande neutralité lui permet de se prêter à tous les usages, si bien qu'elle demeure une des polices les plus utilisées dans le monde et jouit de la faveur des graphistes et typographes.</p>
    <h1>Times New Roman</h1>
    <p>Times New Roman est une police de caractère avec empattement connue et répandue, faisant partie de la famille des réales. Elle est apparue en 1931 dans le journal londonien The Times (police Times), pour lequel elle a été dessinée par Victor Lardent
      (en) sous la direction de Stanley Morison (Monotype). Bien qu'elle ne soit plus utilisée par le journal, cette police est toujours très utilisée dans les livres.</p>

    <h1>Franklin Gothic</h1>

    <p>Franklin Gothic est une police d’écriture sans serif réaliste dessinée par Morris Fuller Benton en 1902 pour l’American Type Founders. Elle est complétée au fil des années en une famille de polices de caractères large et polyvalente.</p>

  </main>
</div>
              
            
!

CSS

              
                body {
  margin: 0;
}

#wrap {
  font-family: sans-serif;
  font-size: 21px;
  line-height: 1.6;
  margin: 0;
  display: flex;
  color: #f00;
  transition: transform .4s cubic-bezier(.25, .1, .25, 1);
}

#wrap:not(:target) {
  transform: translate3d(-335px, 0, 0);
}

#wrap:target {
  transform: translate3d(0, 0, 0);
}

#open,
#close {
  height: 44px;
  text-align: right;
  display: block;
  margin-right: -30px;
}

#wrap:target #open,
#wrap:not(:target) #close {
  display: none;
}

#wrap:target #open {
  display: none;
}

.nav a {
  color: white;
  text-decoration: none;
  display: block;
}

.header {
  background: #f00;
  width: 360px;
  padding: 0 20px;
  display:inline-block;
  vertical-align:top;
}

.nav {
  padding: 25px;
}

.main {
  padding: 25px;
  flex: 1;
  display:inline-block;
}

p {
  max-width: 590px;
  color:#306;
}
              
            
!

JS

              
                
              
            
!
999px

Console