A Pen by David Rogers on CodePen.
Created
October 6, 2015 13:39
-
-
Save al-the-x/55ee80eee471347ed487 to your computer and use it in GitHub Desktop.
vNmJRe
This file contains 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
<nav class="tabs"> | |
<a href="#">Contributions</a> | |
<a href="#" class="active">Repositories</a> | |
<a href="#">Activity</a> | |
</nav> |
This file contains 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
$darker-white: darken(#FFF, 10%); | |
body { | |
background-color: $darker-white; | |
} | |
.tabs { | |
margin: 1ex 0; | |
padding: 0 2em; | |
border-bottom: 1px solid gray; | |
a[href] { | |
display: inline-block; | |
padding: 1ex 0.5em; | |
position: relative; | |
bottom: -1px; | |
// border-collapse: | |
&.active { | |
border: 1px solid gray; | |
border-bottom-color: $darker-white; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment