blob: cb4ad74380ca307924fda6b49ce63fbe08bb21f8 (
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
40
41
42
43
44
45
|
: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: var(--tertiary-color);
width: 400px;
height: 130px;
border-radius: 5px;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: space-between;
h1 {
padding: 0 10px;
}
}
.listCard {
display: flex;
flex-direction: column;
background-color: var(--tertiary-color);
border-radius: 5px;
padding: 10px;
gap: 10px;
}
.content {
align-self: end;
}
|