-
Notifications
You must be signed in to change notification settings - Fork 0
/
App-style.css
79 lines (66 loc) · 1.04 KB
/
App-style.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
.App {
text-align: center;
display: flex;
flex-direction: column;
height: 100%;
align-items: center;
justify-content: center;
align-content: center;
gap: 24px;
background-color: #343944;
padding: 64px 16px 16px;
}
#game-stats {
display: flex;
flex-direction: column;
gap: 10px;
}
#game {
display: flex;
flex-direction: row;
gap: 16px;
flex-grow: 1;
height: 100%;
&.reverse {
flex-direction: row-reverse;
}
}
.Taken-Pieces {
display: flex;
align-items: center;
width: 80px;
flex-direction: column;
gap: 8px;
height: 100%;
overflow: scroll;
&.top {
justify-content: flex-start;
}
&.bottom {
justify-content: flex-end;
}
.Piece {
display: flex;
width: 70%;
height: auto;
aspect-ratio: 1/1;
background-color: transparent;
border: unset;
transition: all 100ms ease-out;
}
}
h1, a , p {
margin: 0;
color: white;
}
h1 {
font-size: x-large;
font-weight: normal;
}
p {
font-size: xx-large;
font-weight: bold;
}
.App-link {
color: #61dafb;
}