<div class="container">
  <div id="toggle" class="toggle"></div>
</div>


.toggle {
  width:  200px;
  height: 60px;
  
  background-color: #f7ce5b;
}

.toggle::after {
  content: "";
  display: block;
  
  width:  40px;
  height: 80%;
  
  background-color: #9f2042;
}



/* OTHER STUFF */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100vw;
  height: 100vh;
  
  display: flex;
  justify-content: center;
  align-items: center;
  
  background-color: #121420;
  color: white;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.