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

              
                <h1>Bucket List Destinations</h1>
<details>
	<summary>Milan, Italy</summary>
	<p>Milan, a metropolis in Italy's northern Lombardy region, is a global capital of fashion and design. Home to the national stock exchange, it’s a financial hub also known for its high-end restaurants and shops. (via Wikipedia)</p>
</details>
<details>
	<summary>Sydney, Australia</summary>
	<p>Sydney, capital of New South Wales and one of Australia's largest cities, is best known for its harbourfront Sydney Opera House, with a distinctive sail-like design. (via Wikipedia)</p>
</details>
<details>
	<summary>Bora Bora, French Polynesia</summary>
	<p>Surrounded by sand-fringed motus (islets) and a turquoise lagoon protected by a coral reef, it’s known for its scuba diving. It's also a popular luxury resort destination where some guest bungalows are perched over the water on stilts. (via Wikipedia)</p>
</details>

              
            
!

CSS

              
                :root {
	--top-color: #FE5D26;
	--bottom-color: #FFAE93;
	
	color: #FFFFFF;
	font-family: 'Roboto';
	font-size: 16px;
	height: 100%;
	
	> * { box-sizing: border-box; }
}

body {
	// Code below provided in part by Colorzilla :-)
	background: var(--top-color);
	background: -moz-linear-gradient(top, var(--top-color) 0%, var(--bottom-color) 100%);
	background: -webkit-linear-gradient(top, var(--top-color) 0%, var(--bottom-color) 100%);
	background: linear-gradient(to bottom, var(--top-color) 0%, var(--bottom-color) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FE5D26', endColorstr='#FFAE93',GradientType=0 );
	// /colorzilla
	
	height: 100%;
	margin: 0 auto;
	max-width: 700px;
	padding: 1rem;	
	width: 100%;
}

details {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	
	&[open] summary::after {
		content: "\f107";
	}
}

summary {
	&::after {
		font-family: "FontAwesome";
		content: "\f105";
		display: inline-block;
		padding-left: 10px;
	}
	
	&::-webkit-details-marker {
		display: none
	}
}

p {
	font: italic normal 400 1rem "Roboto";
	margin: 0;
	padding: .5rem 0;
	 -webkit-animation: fadeIn .5s;
		 -moz-animation: fadeIn .5s;
		  -ms-animation: fadeIn .5s;
			-o-animation: fadeIn .5s;
				animation: fadeIn .5s;
}

@-webkit-keyframes fadeIn {
	from { opacity: 0 }
	to { opacity: 1 }
}

@keyframes fadeIn {
	from { opacity: 0 }
	to { opacity: 1 }
}
              
            
!

JS

              
                
              
            
!
999px

Console