A Pen by Dinesh Vasudevan on CodePen.
Last active
December 28, 2015 10:09
-
-
Save dinks/7484356 to your computer and use it in GitHub Desktop.
A Pen by Dinesh Vasudevan.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Test | |
| <div class="progress"> | |
| <div class="nav left"><a href="#"></a></div> | |
| <div class="page"><a href="#"></a></div> | |
| <div class="page"><a href="#"></a></div> | |
| <div class="page"><a href="#"></a></div> | |
| <div class="page"><a href="#"></a></div> | |
| <div class="page"><a href="#"></a></div> | |
| <div class="page"><a href="#"></a></div> | |
| <div class="page"><a href="#"></a></div> | |
| <div class="page"><a href="#"></a></div> | |
| <div class="nav right"><a href="#"></a></div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .progress { | |
| width: 100%; | |
| background-color: grey; | |
| height: 40px; | |
| display: table; | |
| .page, .nav { | |
| display: table-cell; | |
| padding: 5px; | |
| } | |
| .nav { | |
| width: 20px; | |
| } | |
| .page { | |
| a { | |
| background-color: blue; | |
| margin: 1%; | |
| display: block; | |
| height: 100%; | |
| width: 100%; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment