
/* body {
  background:#eee;
  margin:1em;
  text-align:center;
} */

.container {
  /* display:block; */
  /* position:relative; */
  /* margin:1em auto;
  background:#fff;
  border:1px solid #ccc */
}

body{
    /* position: fixed; */
    /* -webkit-overflow-scrolling: auto; */
    background-color: rgb(128,128,128);
    background-size: cover;
    overflow: hidden;
    /* width: 100%;
    height: 100%;
     */
}

.group{
  /* float: left; */
  display: inline-grid;
  position: relative;
  background-color: lightgray;
  /* border: 4px solid red; */
}

#editorHolder{
  visibility: visible;
}
#timelineContainer{
  /* position: relative;
  width: 2000px; */
  overflow-x: scroll;
  /* overflow-y: hidden; */
  white-space: nowrap;
}

.timelineBlock{
  display: inline-grid;
  /* position: relative; */
  /* background-color: lightgray; */

  position: relative;
  /* display: block; */
  overflow-wrap: normal;
  border: 4px solid gray;
  background-color: grey; /* Green */
  height: 40px;
}

.timelineInput{
  width: 80px;
  display: none;
}

#colorDivA{
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  background-color: red;
  transition-timing-function: linear;
  -webkit-transition: background-color 10s linear;
  -ms-transition: background-color 10s linear;
  transition: background-color 10s linear;
}

#topbar{
  position: absolute;
  background-color: rgb(128,128,128);
  width: 100%;
  height:100px;
  left:0px;
  top:0px;
}


#leftbar{
  position: absolute;
  background-color: rgb(128,128,128);
  width: 100px;
  left:0px;
  top:0px;
  height:100%;
}

#bottombar{
  position: absolute;
  background-color: rgb(128,128,128);
  width: 100%;
  height: 100px;
  left:0px;
  bottom:0px;
}


#rightbar{
  position: absolute;
  background-color: rgb(128,128,128);
  width: 101px;
  right:0px;
  bottom: 0px;
  height:100%;
}


#colorCanvas{
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 1;
  width: 100%;
  height: 100%;
  /* height: -webkit-calc(100% - 201px);
  height: -moz-calc(100% - 201px);
  height: calc(100% - 201px);

  width: -webkit-calc(100% - 201px);
  width:    -moz-calc(100% - 201px);
  width:         calc(100% - 201px); */
  /* -webkit-transition: opacity 0.2s ;
  -ms-transition: opacity 0.2s ;
  transition: opacity 0.2s; */
}

/* #colorCanvas{
  position: absolute;
  top: 100px;
  left: 100px;
  opacity: 1;
  width: 100%;
  height: 100%;

  height: -webkit-calc(100% - 201px);
  height: -moz-calc(100% - 201px);
  height: calc(100% - 201px);

  width: -webkit-calc(100% - 201px);
  width:    -moz-calc(100% - 201px);
  width:         calc(100% - 201px); */
  /* -webkit-transition: opacity 0.2s ;
  -ms-transition: opacity 0.2s ;
  transition: opacity 0.2s; */
/* } */



#colorDivB{
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  background-color: blue;
  -webkit-transition: background-color 240s linear;
  -ms-transition: background-color 240s linear;
  transition: background-color 240s linear;
}


#colorDiv:hover{
  background-color: blue;
}
