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

              
                .container
	.block.first
		p.citation "There is a quote."
		p.author - and the author -

	.block.second
		p.citation "There is an other quote."
		p.author - and the author -
		
	.block.third
		p.citation "Guess what. A quote."
		p.author - and the author -
		
	.block.fourth
		p.citation "Ahem... This is not even a quote"
		p.author - and the author -
              
            
!

CSS

              
                *
	transition: all 250ms ease-in-out
.container
	position: absolute
	transform: translateY(-50%) translateX(-50%)
	top: 50%
	left: 50%

.block
	height: 100px
	line-height: 100px
	text-align: center
	font-family: 'Playfair Display', serif
	.citation
		font-size: 25px
		line-height: 35px
	.author
		font-family: 'Roboto', sans-serif
		color: #838eca
		text-transform: uppercase
		font-size: 10px
		letter-spacing: 2px
		line-height: 35px
		transform: translateY(-50px)
		opacity: 0
.first:hover 
	.citation
		transform: scale(1.2)
		letter-spacing: 1px
	.author
		transform: translateY(-0)
		opacity: 1
.second
	position: relative
	
	.author
		border-top: 1px solid
		border-bottom: 1px solid
		width: 150px
		margin: 0 auto
		position: absolute
		transform: translateX(-50%)
		left: 50%
		right: 50%
		top: 0
	&:hover
		.citation
			transform: scale(1.2)
			letter-spacing: 1px
			opacity: 0.1
		.author
			opacity: 1
			font-weight: bold
			color: #000
			transform: translateX(-50%)
			width: 180px
.third
	position: relative
	.citation
		transform: translateX(0)
	.author
		bottom: 10px
		position: absolute
		right: 0
		opacity: 0
	&:hover
		.citation
			transform: translateX(-30px)
		.author
			right: -50px
			opacity: 1
			color: #ea8273
.fourth
	position: relative
	.author
		opacity: 0
		color: #bf1f5d
		transform: translateY(-50px)
	&:hover
		.citation
			opacity: 0
			transform: translateY(10px)
		.author
			opacity: 1
			transform: translateY(-30px)
              
            
!

JS

              
                // hover the quote
              
            
!
999px

Console