-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (87 loc) · 2.18 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
body {
font-family: 'Arial', sans-serif;
text-align: center;
background-color: rgba(152, 251, 152, 0.5); /* 淡绿色背景,50%透明度 */
margin: 0;
padding: 20px;
}
#game-container {
width: 540px;
margin: 30px auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
margin: 0;
padding: 0;
font-size: 24px;
color: #333;
}
#sudoku-grid {
display: grid;
grid-template-columns: repeat(9, 1fr); /* 创建9列 */
width: 540px; /* 或者是 100%,取决于你的设计需求 */
margin: auto;
}
.grid-cell {
width: calc(100% / 9);
float: left;
position: relative;
}
.grid-cell::before {
content: '';
display: block;
padding-top: 100%; /* 相对于自身宽度的百分比 */
}
.grid-cell input {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
border: 1px dashed #8B0000; /* 褐红色虚线边框 */
text-align: center;
font-size: 20px;
box-sizing: border-box;
}
#sudoku-grid input {
width: 100%;
height: 100%; /* 设置高度为100%,与宽度相等 */
background-color: #fff; /* 单元格背景颜色 */
border: 1px dashed #8B0000; /* 褐红色虚线边框 */
text-align: center;
font-size: 20px;
box-sizing: border-box; /* 确保包括内边距和边框在内的宽度 */
}
/* 粗边框定义删除,使得仅有褐红色虚线边框 */
/* 控制按钮和下拉列表的样式 */
#controls button,
#difficulty {
padding: 10px 20px;
font-size: 18px; /* 增大字体大小 */
margin: 10px 5px;
cursor: pointer;
}
#controls select {
padding: 10px;
font-size: 18px; /* 增大字体大小 */
cursor: pointer;
}
/* 数字选择器的样式 */
#number-chooser button {
padding: 10px;
margin: 0 5px;
font-size: 18px; /* 增大字体大小 */
cursor: pointer;
}
/* 动作按钮的样式 */
#action-buttons button {
padding: 10px;
margin: 0 5px;
font-size: 18px; /* 增大字体大小 */
cursor: pointer;
}