
body {
  background-color: #f1f1f1;
  margin: 0;
  padding:0;
  height: 5000px;

  background: -webkit-repeating-linear-gradient(
    top,
    #606dbc,
    #606dbc 10px,
    #465298 10px,
    #465298 20px
  );

  background: -moz-repeating-linear-gradient(
    top,
    #606dbc,
    #606dbc 10px,
    #465298 10px,
    #465298 20px
  );

  background: -o-repeating-linear-gradient(
    top,
    #606dbc,
    #606dbc 10px,
    #465298 10px,
    #465298 20px
  );

  background: repeating-linear-gradient(
    180deg,
    #606dbc,
    #606dbc 10px,
    #465298 10px,
    #465298 20px
  );
}

.follower {
  display: inline-block;
  background: black;
  width:100px;
  height:100px;
  border-radius: 50px;
}


.overflow-x,
.overflow-y,
.overflow {
  display: block;
  position: absolute;
  left: 50%;

  -webkit-transform: translateY(-50%);

     -moz-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

       -o-transform: translateY(-50%);

          transform: translateY(-50%);
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);

  width: 100%;
  max-width: 300px;
  overflow: hidden;

  height: 300px;
}

.overflow-y {
  top: 200px;
  overflow-y: scroll;
}

.overflow-x {
  top: 550px;
  overflow-x: scroll;
}


.overflow-y .overflow-content{
  height: 800px;
  background: -webkit-repeating-linear-gradient(
      top,
      #606dbc,
      #606dbc 10px,
      #ffffff 10px,
      #ffffff 20px
    );
  background: -moz-repeating-linear-gradient(
      top,
      #606dbc,
      #606dbc 10px,
      #ffffff 10px,
      #ffffff 20px
    );
  background: -o-repeating-linear-gradient(
      top,
      #606dbc,
      #606dbc 10px,
      #ffffff 10px,
      #ffffff 20px
    );
  background: repeating-linear-gradient(
      180deg,
      #606dbc,
      #606dbc 10px,
      #ffffff 10px,
      #ffffff 20px
    );
}

.overflow-x .overflow-content{
  width: 800px;
  height: 100%;
  background: -webkit-repeating-linear-gradient(
      left,
      #606dbc,
      #606dbc 10px,
      #ffffff 10px,
      #ffffff 20px
    );
  background: -moz-repeating-linear-gradient(
      left,
      #606dbc,
      #606dbc 10px,
      #ffffff 10px,
      #ffffff 20px
    );
  background: -o-repeating-linear-gradient(
      left,
      #606dbc,
      #606dbc 10px,
      #ffffff 10px,
      #ffffff 20px
    );
  background: repeating-linear-gradient(
      90deg,
      #606dbc,
      #606dbc 10px,
      #ffffff 10px,
      #ffffff 20px
    );
}
