JSFiddle - React, Tailwind, and code Playground

by ian_smithz

HTML

<div class="logo-container">
  
  <h1>BRIEFCASE<span class="handle">[</span></h1>
</div>

CSS

@import url(//fonts.googleapis.com/css?family=Oswald:400,700,300);

body {
  margin: 0;
}

.handle {
  position: absolute;
  left: 90px;
  top: -51px;
  height: 60px;
  font-size: 62px;
  -ms-transform: rotate(90deg); /* IE 9 */
  -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
  transform: rotate(90deg);
   background-color: #42251d;
   padding: 5px 0 5px 0;
   color: #fff;
   border-radius: 5px 0px 0 5px;
}

h1 {
  font-family: 'Oswald';
  position: relative;
  font-size: 48px;
  line-height: 1;
  margin: 0;
  color: #fff;
}

.logo-container {
  background-color: #42251d;
  margin-top: 2em;
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
}