-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (72 loc) · 1.32 KB
/
style.css
File metadata and controls
72 lines (72 loc) · 1.32 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
body{
background-color: black;
}
h1{
color: rgb(251, 254, 254);
}
.container{
text-align: center;
display: flex;
flex-direction: column;
}
.board{
display: grid;
grid-template-columns: repeat(3,100px);
grid-gap: 4px;
margin: 20px auto;
color: white;
}
.cell{
width: 100px;
height: 100px;
/* border: 4px solid black; */
font-size: 2em;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
color: white;
}
button{
margin-top: 20px;
height: 40px;
width: 150px;
border-radius: 8px;
border: 2px solid rgb(205, 202, 202);
font-size: 0.9rem;
}
.left{
border-right: 4px solid cyan;
}
.center{
border-left: px solid cyan
}
.right{
border-left: 4px solid cyan;
}
.mid{
border-top: 4px solid cyan;
border-bottom: 4px solid cyan;
}
#result{
width: 150px;
height: 2rem;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
color: rgb(224, 228, 228);
}
.btn{
display: flex;
flex-direction: column;
justify-content: center;
gap: 10px;
align-items: center;
}
#reset{
color: cyan;
border: 2px solid cyan;
background-color: rgb(30, 31, 31);
font-size: medium
}