Skip to content

Instantly share code, notes, and snippets.

@kovtunos
Last active September 29, 2017 14:23
Show Gist options
  • Save kovtunos/7f340cd5b011f1c7ac0412ca066538b6 to your computer and use it in GitHub Desktop.
Save kovtunos/7f340cd5b011f1c7ac0412ca066538b6 to your computer and use it in GitHub Desktop.
Lines on both sides of title #sass
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