Adding cards to player's hands

This commit is contained in:
2024-10-04 09:07:01 +02:00
parent 1381706440
commit a485b5f1ab
3 changed files with 48 additions and 15 deletions

View File

@@ -17,13 +17,21 @@ body{
align-items: center;
}
img.card{
img.card{ /* 726 : 500 */
aspect-ratio: 1/1;
object-fit: contain;
height: 200px;
margin: .2rem;
width: 135px;
margin: 0 2rem 0 0;
cursor: context-menu;
}
img.card:last-child{
margin: 0;
}
.cards{
height: 200px;
margin: .5rem 0;
}
h2{
margin-top: .5rem;
}
@@ -36,4 +44,5 @@ button{
margin: .5rem;
color: #fff;
background: #6b6b6b;
cursor: pointer;
}