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

              
                <!-- Heading -->
<h2><span>Roundie</span> Pagination</h2>

<!-- Start Pagination -->
<ul class="pagination">
	<li><a href="#0">&lt;</a></li>
	<li><a class="active" href="#0">1</a></li>
	<li><a href="#0">2</a></li>
	<li><a href="#0">3</a></li>
	<li><a href="#0">4</a></li>
	<li><a href="#0">&gt;</a></li>
</ul>
<!-- End Pagination -->
              
            
!

CSS

              
                $mainFont: 'Lora', serif
$mainColor: #ff4242

body 
	background-color: $mainColor
	font-family: $mainFont

h2
	text-align: center
	color: #fff
	font-size: 40px
	font-family: $mainFont
	font-weight: 700
	margin-top: 60px
	text-shadow: 0 5px 8px rgba(0,0,0,.25)

	span
		font-weight: 400

.pagination
	position: absolute
	left: 50%
	top: 50%
	transform: translate(-50%,-50%)
	margin: 0
	padding: 10px
	background-color: #fff
	border-radius: 40px
	box-shadow: 0 5px 25px 0 rgba(0,0,0,.5)

	li
		display: inline-block
		list-style: none

		a
			display: block
			width: 40px
			height: 40px
			line-height: 40px
			background-color: #fff
			text-align: center
			text-decoration: none
			color: #252525
			border-radius: 4px
			margin: 5px
			box-shadow: inset 0 5px 10px rgba(0,0,0,.1), 0 2px 5px rgba(0,0,0,.5)
			transition: all .3s ease
			&:hover,
			&.active
				color: #fff
				background-color: $mainColor
			
		&:first-child
			a
				border-radius: 40px 0 0 40px
		&:last-child
			a
				border-radius: 0 40px 40px 0
			
              
            
!

JS

              
                /**************************
*** Visit Me On:
http://ahmedbeheiry.com/
*** Thanks ;)
**************************/
              
            
!
999px

Console