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="content">

  <footer>
    <div id="footer">
        <div class="social">&#62220;</div>
        <div class="social">&#62217;</div>    
        <div class="social">&#62223;</div>    
        <div class="social">&#62232;</div>    
        <div class="social">&#62235;</div>    
        <div class="social">&#62226;</div>    
        <div class="social">&#62214;</div>
	</div>
  </footer>
    
</div>
              
            
!

CSS

              
                @import url('http://fonts.googleapis.com/css?family=Lato:300');


* {
margin: 0;
	padding: 0;
}
html, body {
	height: 100%;
}
body {
	background: #ddd;
}
.content {
	padding: 80px 30px;
	font: 300 40px Lato, sans-serif;
	text-align: center;
	color: #999;
	background: #eee;
}
.footer {
	padding: 20px 0;
	text-align: center;
}
.social {
	display: inline-block;
	width: 70px;
	height: 70px;
	margin: 0 10px;
	line-height: 70px;
	font-family: Entypo;
	font-size: 35px;
	text-align: center;
	color: #bbb;
	border-radius: 50%;
	background: #eee;
	overflow: hidden;
	transition: color .3s;
}
.social:hover {
  color: #59d;
  cursor: pointer;
}
.social {
box-shadow: 1px 1px rgb(210, 210, 210),
  2px 2px rgb(210, 210, 210),
  3px 3px rgb(211, 211, 211),
  4px 4px rgb(211, 211, 211),
  5px 5px rgb(211, 211, 211),
  6px 6px rgb(212, 212, 212),
  7px 7px rgb(212, 212, 212),
  8px 8px rgb(212, 212, 212),
  9px 9px rgb(213, 213, 213),
  10px 10px rgb(213, 213, 213),
  11px 11px rgb(214, 214, 214),
  12px 12px rgb(214, 214, 214),
  13px 13px rgb(214, 214, 214),
  14px 14px rgb(215, 215, 215),
  15px 15px rgb(215, 215, 215),
  16px 16px rgb(215, 215, 215),
  17px 17px rgb(216, 216, 216),
  18px 18px rgb(216, 216, 216),
  19px 19px rgb(216, 216, 216),
  20px 20px rgb(217, 217, 217),
  21px 21px rgb(217, 217, 217),
  22px 22px rgb(218, 218, 218),
  23px 23px rgb(218, 218, 218),
  24px 24px rgb(218, 218, 218),
  25px 25px rgb(219, 219, 219),
  26px 26px rgb(219, 219, 219),
  27px 27px rgb(219, 219, 219),
  28px 28px rgb(220, 220, 220),
  29px 29px rgb(220, 220, 220),
 30px 30px rgb(221, 221, 221);
text-shadow: 1px 1px rgb(226, 226, 226),
  2px 2px rgb(227, 227, 227),
  3px 3px rgb(227, 227, 227),
  4px 4px rgb(228, 228, 228),
  5px 5px rgb(229, 229, 229),
  6px 6px rgb(229, 229, 229),
  7px 7px rgb(230, 230, 230),
  8px 8px rgb(230, 230, 230),
  9px 9px rgb(231, 231, 231),
  10px 10px rgb(232, 232, 232),
  11px 11px rgb(232, 232, 232),
  12px 12px rgb(233, 233, 233),
  13px 13px rgb(233, 233, 233),
  14px 14px rgb(234, 234, 234),
  15px 15px rgb(235, 235, 235),
  16px 16px rgb(235, 235, 235),
  17px 17px rgb(236, 236, 236),
  18px 18px rgb(236, 236, 236),
  19px 19px rgb(237, 237, 237),
  20px 20px rgb(238, 238, 238);
}


              
            
!

JS

              
                
              
            
!
999px

Console