blob: d01ac54e15261e23e5c0cc90fc6d8334ee29c56f (
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
56
57
58
59
60
|
:host {
display: flex;
flex-direction: column;
border: solid rgba(255, 255, 255, 0.5) 1px;
border-radius: 5px;
}
#header {
display: flex;
flex-direction: row;
justify-content: space-between;
border-bottom: solid rgba(255, 255, 255, 0.5) 1px;
padding: 10px;
a {
display: flex;
}
}
#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;
}
|