I need to create this view shape in the image below, which contains text. 
Here is how I tried:
HTML
<div class="header-bottom"> <div class="blue-rectangle"> <p>sadasdasdasd</p> </div> <div class="blue-rectangle"> <p>dsasdasdasda</p> </div> </div>
CSS
.header-bottom{ position: absolute; right:13%; bottom:5%; } .blue-rectangle { background-color: rgba(3,78,136,0.7); padding: 10px 20px 10px 200px; margin-bottom: 20px; } .blue-rectangle p{ color:white; text-transform: uppercase; font-size:18px; }
I tried adding transform: skew, but it distorts both the right and left and the text itself.
source share