I am facing an issue with CSS or HTML where I need to move a line from the first circle to the second one, as shown in the image below. Here is the link to my JSfiddle version:
https://i.sstatic.net/Pn6rF.jpg
JSFiddle code:
https://jsfiddle.net/odzuwsdt/
HTML:
<section id="intro" class="workhide">
<div class="content_section with_border">
<div class="content"><span class="label">Werk</span>
<h1>
Zo trots als een hond met zeven staarten. <br > Ben ik op mijn werk. Denk jij nu: 'Dat wil ik ook!'?<br > mail mij!
</h1>
</div>
</div>
</section>
CSS:
.content_section.with_border:before {
content: "";
width: 10%;
display: block;
height: 2px;
left: 0;
top: 24px;
position: absolute;
background: #1d1b22;
clear: both;
}
.content_section.with_border .label {
position: relative;
clear: both;
}
h1, h2 {
font-weight: 800;
font-size: 1.60714em;
line-height: 1.24444em;
margin: 0 0 .64286em;
}
.content_section.with_border .content {
padding: 0 11%;
clear: both;
}
.content_section .label {
font-size: .5em;
text-transform: uppercase;
font-weight: 800;
}
Can anyone help me solve this issue?