-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathttt.css
66 lines (57 loc) · 1.21 KB
/
ttt.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
body {
font-family: "Arial", sans-serif;
background-image: url('bluestripes.jpg');
}
section {
text-align: center;
}
.game--title {
font-size: 100px;
color: #d7a62f;
margin: 10px auto;
}
nav{
display: flex;
justify-content: space-between;
font-weight: 500;
position: sticky;
top: 0;
left: 0;
width: 100%;
box-sizing: border-box;
padding: 10px 15px;
box-shadow: 2px 2px 12px rgba(0,0,0,0.5);
z-index: 1;
}
.game--container {
display: grid;
grid-template-columns: repeat(3, auto);
width: 306px;
margin: 10px auto;
background-color: #11213a;
color: #04c0b2;
}
.cell {
font-family: "Permanent Marker", cursive;
width: 100px;
height: 100px;
box-shadow: 2px 2px 2px 2px #ecd7ba;
border: 2px solid #ecd7ba;
cursor: pointer;
line-height: 100px;
font-size: 60px;
}
.game--status {
font-size: 50px;
color: #d7a62f;
margin: 20px auto;
}
.game--restart {
background-color: #f7e4ac;
width: 200px;
height: 50px;
font-size: 25px;
color: #5586e2;
box-shadow: 2px 2px 2px 2px #d86c23;
border: 2px solid #d86c23;
}