44 lines
626 B
CSS
44 lines
626 B
CSS
* {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
color: lightblue;
|
|
padding: 30px;
|
|
background-color: skyblue;
|
|
user-select: none; /*避免用户选取页面元素*/
|
|
}
|
|
|
|
#gameBoard {
|
|
margin-top: 10px;
|
|
width: 700px;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
gap: 10px;
|
|
|
|
}
|
|
|
|
card {
|
|
width: 100px;
|
|
height: 100px;
|
|
font-size: 80px;
|
|
line-height: 100px;
|
|
text-align: center;
|
|
background-color: goldenrod;
|
|
cursor: pointer;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.grayout {
|
|
filter: grayscale(50%);
|
|
}
|
|
|
|
time {
|
|
font-size: 20px;
|
|
}
|
|
|
|
button {
|
|
padding: 5px;
|
|
} |