mursion-colours-01

by Nic Fontaine

HTML

<div class='grey-d-02'>
</div>
<div class='grey-d-01'>
  <div class='grey-l'>
    <div class='white'></div>
  </div>
  <div class='pink'>
  </div>
</div>

<div class='btn'>
  <div class='btn-inner'>
  </div>
</div>

CSS

html, body {
  height: 100%;
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
}

body {
  /* background: #00a2ab;
  background: -moz-linear-gradient(20deg, #00a2ab 0%, #95c790 100%);
  background: -webkit-linear-gradient(20deg, #00a2ab 0%,#95c790 100%);
  background: linear-gradient(20deg, #00a2ab 0%,#95c790 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a2ab', endColorstr='#95c790',GradientType=1 ); */
  
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3fb2a0+0,09a4a9+100,2a2b30+100 */
background: #3fb2a0; /* Old browsers */
background: -moz-linear-gradient(top, #3fb2a0 0%, #09a4a9 100%, #2a2b30 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #3fb2a0 0%,#09a4a9 100%,#2a2b30 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #3fb2a0 0%,#09a4a9 100%,#2a2b30 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3fb2a0', endColorstr='#2a2b30',GradientType=0 ); /* IE6-9 */
}

div.grey-d-02 {
  height: 6%;
  background: #1d1b20;
}


div.grey-d-01 {
  height: 50%;
  background: #2F2C33;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2a2b30+0,232328+100 */
background: #2a2b30; /* Old browsers */
background: -moz-linear-gradient(top,  #2a2b30 0%, #232328 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #2a2b30 0%,#232328 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #2a2b30 0%,#232328 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2a2b30', endColorstr='#232328',GradientType=0 ); /* IE6-9 */

}

div.grey-l {
  height: 100%;
  width: 20%;
  background: #eee;
}

div.white {
  background: #fff;
  height: 80%;
}

div.pink {
  position:...