I've been asked to re-create some art work in CSS and I'm trying to add a border on top off a border. I have 2 images here, one is of my current progression and the others of the art work.
My progressiong:
https://i.stack.imgur.com/MWOQu.png
What I'm aiming to make:
https://i.stack.imgur.com/9Ka1w.png
Is there any easy way to do this?
#bottom-bar {
position: fixed;
background-color: #2F2F2F;
border-top: 1.8px solid #5f5f5f99;
border-bottom: 1px solid #5f5f5f99;
left: 0;
bottom: 0;
height: 50px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #fff;
z-index: 2000;
}