li{
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
text-align: center;
line-height: 300px;
}
li:nth-child(1){
background-color: rgba(0, 255, 0, 1);
transform: translateZ(150px);
}
li:nth-child(2){
background-color: rgba(0, 0, 255, 1);
transform: rotateY(90deg) translateZ(150px);
}
li:nth-child(3){
background-color: rgba(255, 0, 255, 1);
transform: rotateY(180deg) translateZ(150px);
}
li:nth-child(4){
background-color: rgba( 0, 255, 255, 1);
transform: rotateY(270deg) translateZ(150px);
}
li:nth-child(5){
background-color: rgba( 110, 0, 215, 1);
transform: rotateX(90deg) translateZ(150px);
}
li:nth-child(6){
background-color: rgba( 110, 0, 0, 1);
transform: rotateX(270deg) translateZ(150px);
}