mirror of
https://github.com/MrEidam/PetPet.git
synced 2026-04-17 15:43:31 +00:00
76 lines
1.3 KiB
CSS
76 lines
1.3 KiB
CSS
*{
|
|
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;
|
|
background-image: url("./pc.jpg");
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover;
|
|
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;*/
|
|
}
|
|
|
|
.gameBack{
|
|
padding: 1rem;
|
|
height: 450px;
|
|
width: 300px;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
backdrop-filter: blur(5px);
|
|
border-radius: 50px;
|
|
box-shadow:
|
|
inset 10px 10px 20px #fff,
|
|
10px 10px 20px #333;
|
|
}
|
|
|
|
@media screen and (max-width: 500px){
|
|
body{
|
|
background-image: url("./mobile.jpg");
|
|
}
|
|
} |