-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (40 loc) · 856 Bytes
/
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
body {
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
font-size: 60px;
background: linear-gradient(to right, #120b77, #c515f5);
background-clip: text;
color: transparent;
}
#game-board {
display: grid;
grid-template-columns: repeat(3, 100px);
grid-gap: 11px;
margin: 80px auto;
width: 321px;
}
.cell {
width: 100px;
height: 100px;
font-size: 36px;
text-align: center;
line-height: 100px;
background-color: #d4d3d4;
cursor: pointer;
user-select: none;
}
#message {
font-size: 24px;
margin: 10px;
}
#reset-button {
font-size: 18px;
padding: 20px 40px;
background-color: #571371;
color: #ffffff;
border: none;
border-radius: 5px;
cursor: pointer;
}