46 lines
632 B
CSS
Executable File
46 lines
632 B
CSS
Executable File
|
|
body{
|
|
background-color: #b967ff;
|
|
}
|
|
|
|
#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%;
|
|
|
|
}
|
|
#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;
|
|
}
|
|
img{
|
|
height:7.75em;
|
|
}
|