26 lines
411 B
CSS
26 lines
411 B
CSS
.game {
|
|
width: 100%;
|
|
float: left;
|
|
}
|
|
|
|
.game .left-side {
|
|
float: left;
|
|
width: 45%;
|
|
/* max-width: 400px; */
|
|
|
|
/* height: 100px; */
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.game .right-side {
|
|
float: left;
|
|
width: 55%;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |