-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
84 lines (84 loc) · 1.31 KB
/
App.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
.title {
color: white;
}
.title-container {
font-size: 24px;
text-align: center;
padding-left: 30px;
}
.square {
position: relative;
top: 0;
left: 0;
height: 100px;
width: 100px;
}
.square-container {
width: 100px;
height: 100px;
font-size: 0;
}
.pawn {
position: relative;
font-size: 100px;
color: white;
z-index: 1;
top: -120px;
cursor: pointer;
}
.col-container {
display: flex;
flex-direction: column;
}
.board-container {
padding-top: 50px;
}
.notation-col {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
padding-right: 30px;
}
.notation-number-col {
color: white;
font-size: 20px;
}
.notation-number-row {
color: white;
font-size: 20px;
display: inline;
}
.first-board-container {
height: 300px;
width: 100%;
display: flex;
flex-direction: row;
}
.notation-row {
margin-left: 50px;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
width: 300px;
padding-top: 20px;
}
.stats-container {
color: white;
font-size: 14px;
padding-top: 30px;
text-align: center;
}
.structure-container {
margin-top: 100px;
height: 700px;
width: 350px;
display: flex;
flex-direction: column;
}
.page-container {
display: flex;
justify-content: center;
}