blob: 303b890829081b9f032f37b2e71aca65d103ee9c (
plain) (
blame)
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
|
:host {
display: flex;
justify-content: center;
}
#box {
display: flex;
width: 800px;
flex-direction: column;
gap: 10px;
}
#stats {
display: flex;
flex-direction: row;
gap: 10px;
}
.card {
background-color: #2e2e2e;
width: 400px;
height: 130px;
border-radius: 5px;
padding: 20px;
display: flex;
flex-direction: column;
}
.listCard {
background-color: #2e2e2e;
border-radius: 5px;
padding: 10px;
}
.content {
align-self: end;
}
|