Canvas Cortland | with histo navigation

by Kirubel Girma

HTML

<div class="ca">
  <div class="a">
    <img class="ima" src="https://photos-1.dropbox.com/t/2/AAD1mxUPuCQ1f6pI9OGwcGyZcgDyiAYwW0cCM-X3s4SyHg/12/33041273/jpeg/32x32/3/1496376000/0/2/DJI_0042.JPG/ENL5hRkYrgcgAigC/v9r_IqobJ3kC6JQZ1sKePbou6J5bSJCfz5v9b7WFmow%2CILbwtl6TWTymIRgY30vkS5NrWf3dAvPdqjLLLf5aSf0?dl=0&size=1600x1200&size_mode=3"
    alt="">
    <div class="tcanv">
      <div class="tln"></div>
      <div class="axx">
        <div class="ttl">
          Check this out
        </div>
        <div class="dot"></div>
        <div class="xdt">5/31/2017</div>
      </div>

      <div class="axx">
        <div class="ttl">
          Check this out
        </div>
        <div class="dot"></div>
        <div class="xdt">5/31/2017</div>
      </div>

      <div class="axx">
        <div class="ttl">
          Check this out
        </div>
        <div class="dot"></div>
        <div class="xdt">5/31/2017</div>
      </div>

      <div class="axx">
        <div class="ttl">
          Check this out
        </div>
        <div class="dot"></div>
        <div class="xdt">5/31/2017</div>
      </div>
    </div>
  </div>
</div>

CSS

* {
  margin: 0;
}

.ca {
  margin: 0;
  height: 100%;
  width: 100%;
  background-color: #fbfbfb;
  position: absolute;
}

.a {
  margin: 1em;
  font-family: arial;
  width: 59.533em;
  height: 31.462em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.ima {
  height: 31.462em;
  ;
  width: 59.533em;
  ;
}

* {
  font-family: arial;
}

.tcanv {
  margin-top: 2em;
  width: 100%;
  height: 3.3em;
}

.tln {
  /* top: 2em; */
  position: absolute;
  margin-top: 1.5em;
  width: 100%;
  height: 0.1em;
  background: cornflowerblue;
}

.axx {
  position: relative;
  min-width: 6em;
  float: left;
  padding: 0em .3em 0em .3em;
}

.axx:hover {
  transform: scale(1.1);
  -webkit-transition: all 600ms cubic-bezier(0.145, 1, 0.22, 1);
  transition: all 600ms cubic-bezier(0.145, 1, 0.22, 1);
}

.ttl {
  font-size: .8em;
  text-align: center;
}

.dot {
  margin-top: 0.2em;
  margin-left: 42%;
  margin-right: 42%;
  height: 1em;
  width: 1em;
  background: cornflowerblue;
  border-radius: 50%;
}

.xdt {
  text-align: center;
  font-size: .65em;
  margin-top: .5em;
}