42 lines
443 B
CSS
42 lines
443 B
CSS
|
|
.game {
|
|
}
|
|
.choices{
|
|
display : flex;
|
|
align-items:stretch;
|
|
height:8em;
|
|
}
|
|
.choices > span:nth-child(2) {
|
|
margin-left:3em;
|
|
}
|
|
|
|
.choices span i{
|
|
font-size: 2em;
|
|
cursor: pointer;
|
|
border: none;
|
|
margin-right:0.25em;
|
|
transition: transform 0.2s, color 0.2s;
|
|
}
|
|
|
|
#player,#computer{
|
|
font-size: 3em;
|
|
border: none;
|
|
margin-right:0.25em;
|
|
}
|
|
|
|
|
|
.choices span i:hover {
|
|
color:#398712
|
|
}
|
|
|
|
#player {
|
|
color:#398712
|
|
}
|
|
|
|
#computer {
|
|
color:#D93526;
|
|
}
|
|
|
|
|
|
|