-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (46 loc) · 744 Bytes
/
style.css
File metadata and controls
53 lines (46 loc) · 744 Bytes
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
html, body {
background-color: black;
color: white;
width: 100%;
display:flex;
}
#root {
margin:auto;
}
#view1, #view2 {
text-align: center;
}
button {
background-color: white !important;
color:black !important;
margin-top: 1em;
}
#gameView p, #resultView p {
margin: 1em 2em;
}
.cell {
display: inline-block;
border: 1px solid black;
width: 150px;
height: 150px;
background-color: white;
overflow: hidden;
color: black;
font-size: 100px;
text-align: center;
}
#row0 .col0 {
border-top-left-radius: 10px;
}
#row0 .col2 {
border-top-right-radius: 10px;
}
#row2 .col0 {
border-bottom-left-radius: 10px;
}
#row2 .col2 {
border-bottom-right-radius: 10px;
}
.cell.winningLine {
color:green;
}