-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (55 loc) · 892 Bytes
/
styles.css
File metadata and controls
64 lines (55 loc) · 892 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
54
55
56
57
58
59
60
61
62
63
64
#main {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.score-box {
display: flex;
align-items: center;
justify-content: center;
}
.score-box > div {
height: 50px;
width: 140px;
text-align: center;
font-size: 22px;
}
.modal {
position: absolute;
display: none;
top: 50%;
width: 160px;
height: 90px;
border: 2px solid;
border-radius: 5px;
text-align: center;
}
.modal.show {
display: flex;
justify-content: center;
align-items: center;
background-color: #fff;
}
table {
background-color: green;
border-collapse: collapse;
}
.othelloSquare {
height: 30px;
width: 30px;
border: 2px solid;
}
div.black, div.white {
width: 100%;
height: 100%;
}
div.black {
background-color: black;
border-radius: 50%;
}
div.white {
background-color: white;
border-radius: 50%;
}