main_web/rollDice/dice.css
2022-12-12 18:36:07 -05:00

63 lines
836 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: 5%;
width:100%;
display: flex;
justify-content: center;
font-size: 24px;
color: #fffb96;
}
input[type=radio] {
border: 0px;
width: 100%;
height: 2em;
}
.die{
height:7.75em;
}
#numbers{
display: none;
text-align: center;
font-size: 1.5rem;
color: white;;
}
.wrapper{
position:fixed;
right:0;
bottom:0;
}
#math{
display: none;
}