Last active
April 24, 2016 13:53
-
-
Save khaeransori/3cc5f80f87d38d3d205bac09cf0a1823 to your computer and use it in GitHub Desktop.
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
/* Breadcrumb */ | |
.code-breadcrumb { | |
position: relative; | |
} | |
.code-breadcrumb + div { | |
margin-top: 100px; | |
} | |
.code-breadcrumb:after { | |
position: absolute; | |
content: " "; | |
width: 100%; | |
border-top: 3px solid #BCBCC4; | |
z-index: -1; | |
top: 55px; | |
} | |
.code-breadcrumb-state-wrapper { | |
height: 50px; | |
width: 50px; | |
margin: 0 auto; | |
background-color: #EDEEEF; | |
border-radius: 50%; | |
padding-top: 5px; | |
} | |
.code-breadcrumb-state-label { | |
text-align: center; | |
padding-bottom: 10px; | |
font-weight: 600; | |
color: #BCBCC4; | |
} | |
.code-breadcrumb-state-label.active { | |
color: #0FAFE4; | |
} | |
.code-breadcrumb-state { | |
height: 40px; | |
width: 40px; | |
background-color: #EDEEEF; | |
border: 3px solid #BCBCC4; | |
color: #BCBCC4; | |
border-radius: 50%; | |
margin: 0 auto; | |
text-align: center; | |
font-size: large; | |
padding: 4px; | |
} | |
.code-breadcrumb-state.active { | |
border-color: #0FAFE4; | |
color: #0FAFE4; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment