-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNEWCSS.css
More file actions
89 lines (77 loc) · 1.47 KB
/
Copy pathNEWCSS.css
File metadata and controls
89 lines (77 loc) · 1.47 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
78
79
80
81
82
83
84
85
86
87
88
89
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, sans-serif;
}
body{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:linear-gradient(135deg,#0f172a,#1e293b,#334155);
}
.container{
text-align:center;
padding:30px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(12px);
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}
h1{
color:white;
margin-bottom:20px;
}
#status{
color:#ddd;
font-size:18px;
margin-bottom:20px;
}
.board{
display:grid;
grid-template-columns:repeat(3,100px);
gap:10px;
}
.cell{
width:100px;
height:100px;
background:rgba(255,255,255,0.1);
border-radius:15px;
display:flex;
justify-content:center;
align-items:center;
font-size:3rem;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}
.cell:hover{
background:rgba(255, 0, 0, 0.797);
transform:scale(1.05);
box-shadow:0 1px 10px rgba(198, 189, 189, 0.413);
}
.x{
color: rgb(95, 189, 95);
}
.o{
color: rgb(39, 167, 196);
}
#restartBtn{
margin-top:20px;
padding:12px 25px;
border:none;
border-radius:50px;
cursor:pointer;
color:white;
font-size:16px;
background:linear-gradient(135deg,#3b82f6,#8b5cf6);
}
#restartBtn:hover{
opacity:0.9;
}
#title{
font-size:2.5rem;
color:#ffffff;
text-shadow:0 0 10px #000000,0 0 20px #8f7958,0 0 30px #fbbf24;
}