-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtic.css
More file actions
73 lines (63 loc) · 1.19 KB
/
tic.css
File metadata and controls
73 lines (63 loc) · 1.19 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
display: flex;
justify-content: center;
align-items: center;
background-color: #ffccdd;
font-family: 'Arial', sans-serif;
}
.container {
text-align: center;
}
h1 {
font-size: 2em;
color: #ff6f61;
margin-bottom: 20px;
}
.board {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 5px;
width: 40vw;
height: 40vw;
}
.cell {
background-color: #ffebee;
display: flex;
justify-content: center;
align-items: center;
font-size: 3em;
color: #ff6f61;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s;
}
.cell:hover {
background-color: #ffc1c1;
}
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #ff6f61;
color: white;
font-size: 1.2em;
cursor: pointer;
transition: background-color 0.3s;
margin-top: 20px;
}
button:hover {
background-color: #ff3d30;
}
.message {
font-size: 1.5em;
margin-top: 20px;
color: #4caf50;
}