71 lines
980 B
CSS
71 lines
980 B
CSS
|
|
body{
|
|
background-color: #b967ff;
|
|
height: 100%;
|
|
}
|
|
|
|
#diceContainer{
|
|
display: flex;
|
|
justify-content:center;
|
|
|
|
flex-wrap: wrap;
|
|
flex-basis: 100%;
|
|
}
|
|
#diceContainer span{
|
|
padding: .6%;
|
|
}
|
|
|
|
#shuffleButton{
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
}
|
|
#shuffleButton button{
|
|
background-color: #01cdfe;
|
|
color: #fffb96;
|
|
border-radius: 20px;
|
|
font-size: 200%;
|
|
padding: 2rem;
|
|
|
|
}
|
|
.numberOfDiceSelection{
|
|
/* padding-top: 5%; */
|
|
/* padding-right: 2%; */
|
|
/* width:100%; */
|
|
/* margin: auto; */
|
|
margin-top: 2%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
font-size: 2rem;
|
|
color: #fffb96;
|
|
}
|
|
input[type=radio] {
|
|
border: 0px;
|
|
/* width: 90%; */
|
|
height: 2em;
|
|
}
|
|
.die{
|
|
height:7.75em;
|
|
}
|
|
|
|
#numbers{
|
|
display: none;
|
|
text-align: center;
|
|
font-size: 1.5rem;
|
|
color: white;;
|
|
}
|
|
|
|
#inputSum{
|
|
text-align: center;
|
|
margin: auto;
|
|
}
|
|
|
|
.wrapper{
|
|
position:fixed;
|
|
right:0;
|
|
bottom:0;
|
|
}
|
|
#math{
|
|
display: none;
|
|
} |