@charset "utf-8";
/* CSS Document */

#timings_container {
    
    border: 1px solid #aaa;
    height: 530px;
    width: 530px;
    margin: 0 auto;
    padding: 10px;
    position: relative;
    
}

.box {
    
    font-size: 12px;
    height: 60px;
    width: 60px;
    margin-bottom: 10px;
    position: relative;
    color:white;
    
}

.box p {
    
    text-align: center;
    padding: 4px;

}

#ease.box {
    
    border:1px solid #f00;
    transition: all 2s ease 12s;
    background-color: #f00
}

#ease-in.box {
    
    border: 1px solid #00FF00;
    transition: all 2s ease-in 10s;
    background-color: #00FF00;
}

#ease-out.box {
    
    border: 1px solid #00f;
    transition: all 2s ease-out 8s;
    background-color: #00f;
}

#ease-in-out.box {
    
    border: 1px solid #ff0;
    transition: all 2s ease-in-out 6s;
    background-color: #ff0;
}

#linear.box {
    
    border: 1px solid #f0f;
    transition: all 2s linear 4s;
    background-color: #f0f;
}

#custom.box {
    
    border: 1px solid #0ff;
    transition: all 2s cubic-bezier(1,0.835,0,0.945) 2s;
    background-color: #0ff;     
}

#negative.box {
    
    border: 1px solid black;
    transition: all 2s cubic-bezier(1,-0.53,0.405,1.425) 0s;
    background-color: black;
}

#timings_container:hover .box {
    
    background-color: white;
    color: black;
    border-radius: 30px;
    margin-left: 420px;
    transform: rotate(720deg)
}