blob: 6dceee1dd0e94872ec3a26bb937ff7aceafa0dc4 (
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
46
47
48
49
50
51
52
53
54
55
|
:host {
display: flex;
flex-direction: column;
border-radius: 5px;
height: 175px;
}
#empty {
height: 175px;
display: flex;
align-items: center;
color: #878787;
}
#needList {
display: flex;
flex-direction: row;
/*padding: 10px;*/
gap: 10px;
justify-content: start;
overflow: auto;
}
.needEntry {
padding: 10px;
display: flex;
flex-direction: column;
background-color: #3a3a3a;
border-radius: 5px;
height: 175px;
width: 200px;
justify-content: space-between;
div {
display: flex;
flex-direction: column;
}
user-select: none;
cursor: pointer;
}
.needEntry:hover {
background-color: #444444;
}
.needName {
font-weight: bold;
}
.needType {
text-transform: uppercase;
/*font-weight: 300;*/
font-size: 10pt;
}
|