main_web/yatzee/style.css
2023-04-15 20:28:38 -04:00

69 lines
1.2 KiB
CSS

#highScore{
text-align: center;
}
header{
margin: auto;
text-align: center;
}
#diceBoard{
width: 85%;
height: 150px;
background-color: blueviolet;
border: 2px solid black;
margin: auto;
display: flex;
justify-content: space-evenly;
padding: .5rem;
flex-wrap: nowrap;
border-radius: 10px;
}
#scoreBoard{
width: 85%;
height: 300px;
background-color: rgb(226, 192, 43);
border: 3px dotted black;
margin: auto;
}
#diceBoard img{
height: 3rem;
}
.dice_pic_hold{
align-self: flex-end;
order: -1;
}
#game{
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
gap: 1rem;
}
#roll{
padding: 2rem;
color: white;
background-color: rgb(50, 68, 83);
border-radius: 25%;
box-shadow: 2px 2px gray;
}
#upper{
display: flex;
justify-content: space-around;
align-items:center;
width: 100%;
border: 1px solid black;
flex-wrap: wrap;
}
.upperScore{
height: 30px;
background-color: brown;
/* border: 2px solid black; */
width: 16.66px;
/* display: none; */
}
.upperLable{
flex-wrap: wrap;
/* width: 100%; */
}