JSFiddle - React, Tailwind, and code Playground

Tri block layout with CSS BG gradients

by Andrew Pougher

HTML

<div class="container-fluid screentall">
<div class="row no-gutter andrewpougher">
<div class="col-lg-12 text-center masthead">
<h2>
Layout Top
</h2>
</div><!-- end full width -->
</div><!-- end row 1 -->

<div class="row no-gutter">


<div class="col-lg-6 col-xs-6 text-center dd doubles">
<h2>Left</h2>
</div>

<div class="col-lg-6  col-xs-6 text-center ap doubles">
<h2>right</h2>
</div>


</div>




<!-- end -->
</div>

CSS

@import url(https://fonts.googleapis.com/css?family=Roboto:100,200,300,400|Domine:400|Montserrat:700);

.no-gutter > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

   

html {

    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    color:white
}
body{  font-family: Montserrat,Arial,sans-serif;   color:white; }
.dd{ background: #750000; /* Old browsers */
    background: -moz-linear-gradient(left, #750000 0%, #9c1000 40%, #9c1000 60%, #750000 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #750000 0%,#9c1000 40%,#9c1000 60%,#750000 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #750000 0%,#9c1000 40%,#9c1000 60%,#750000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#750000', endColorstr='#750000',GradientType=1 ); /* IE6-9 */

}

.ap{

  background: #0e173b; /* Old browsers */
  background: -moz-linear-gradient(left, #0e173b 0%, #3a273c 50%, #0e173b 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#0e173b), color-stop(50%,#3a273c), color-stop(100%,#0e173b)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #0e173b 0%,#3a273c 50%,#0e173b 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #0e173b 0%,#3a273c 50%,#0e173b 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #0e173b 0%,#3a273c 50%,#0e173b 100%); /* IE10+ */
  background: linear-gradient(to right, #0e173b 0%,#3a273c 50%,#0e173b 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e173b', endColorstr='#0e173b',GradientType=1 ); /* IE6-9 */
}


.andrewpougher{ 
  background: #02222d; /* Old browsers */
    background: -moz-linear-gradient(left, #02222d 0%, #08464a 40%, #08464a 60%, #02222d 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#02222d),...