Last active
September 29, 2017 14:23
-
-
Save kovtunos/7f340cd5b011f1c7ac0412ca066538b6 to your computer and use it in GitHub Desktop.
Lines on both sides of title #sass
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
h1 { | |
overflow: hidden; | |
&::after, | |
&::before { | |
border-bottom: 4px solid black; | |
content: ''; | |
display: inline-block; | |
height: .1em; | |
position: relative; | |
vertical-align: middle; | |
width: 50%; | |
margin-bottom: .15em; | |
} | |
&::before { | |
right: .5em; | |
margin-left: -50%; | |
} | |
&::after { | |
left: .5em; | |
margin-right: -50%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment