-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
77 lines (66 loc) · 1.29 KB
/
styles.css
File metadata and controls
77 lines (66 loc) · 1.29 KB
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
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(to right, #ff7e5f, #feb47b);
font-family: Arial, sans-serif;
}
.menu-container {
text-align: center;
}
.start-button {
padding: 10px 20px;
font-size: 1.5em;
margin: 10px;
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
}
.start-button:hover {
background-color: #555;
}
.hidden {
display: none;
}
.game-container {
text-align: center;
}
.grid {
display: grid;
grid-template-columns: repeat(3, 100px);
grid-template-rows: repeat(3, 100px);
gap: 5px;
margin-bottom: 20px;
}
.cell {
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2em;
background-color: #ffffff;
border: 2px solid #333;
cursor: pointer;
}
.cell:hover {
background-color: #f0f0f0;
}
.status {
font-size: 1.5em;
margin-bottom: 10px;
}
.reset-button {
padding: 10px 20px;
font-size: 1em;
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
}
.reset-button:hover {
background-color: #555;
}