Helpful Border Before
by Kevin Pliester
HTML
<div class="helpful-controls">
<div><button class="helpful-pro helpful-button" type="button" role="button"> Ja </button></div>
<div><button class="helpful-contra helpful-button" type="button" role="button"> Nein </button></div>
</div>
CSS
body {
background: #344A5E;
font-family: "Arial";
}
.helpful-controls {
display: flex;
}
.helpful-controls>div {
padding-right: 15px;
}
/* AB HIER BEGINNT DER CODE */
.helpful-controls .helpful-button {
position: relative;
background: #366B68 !important;
padding: 0 15px;
height: 30px;
line-height: 30px;
border: none;
color: #fff;
min-width: 150px;
cursor: pointer;
}
.helpful-controls .helpful-button:before {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 5px;
}
.helpful-controls .helpful-pro:before {
background: #6DB5B1;
}
.helpful-controls .helpful-contra:before {
background: #B86337;
}