First Dice game; 2048 for mobile partialy; Shadows and custom background in rock paper scissors

This commit is contained in:
2024-08-09 00:05:18 +02:00
parent dc5bc86832
commit 5664a525db
19 changed files with 227 additions and 14 deletions

View File

@@ -0,0 +1,51 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
background-color: #333;
color: #fff;
text-align: center;
}
img{
width: 100px;
height: 100px;
margin: 1.25rem;
}
.ques{
display: flex;
flex-direction: row;
}
.ques p{
margin-right: .5rem;
}
.ques select{
border: none;
border-radius: 7px;
}
button{
text-transform: uppercase;
height: 69px;
width: 69px;
margin-top: 1rem;
border-radius: 10px;
border: none;
}
.won{
color: lime;/*
text-transform: uppercase;*/
}
.lose{
color: red;/*
text-transform: uppercase;*/
}