aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/need-list/need-list.component.css
blob: c2b8b90e47519648110fb47340e74e2fc55bd5f2 (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
:host {
    list-style-type: none;
    border: 2px solid #000;
    display: block;
    border-radius: 5px;
}

div, li > button {
    border: 2px solid #000;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
}

ul {
    list-style-type: none;
    padding-inline-start: 0px;
}

li > button {
    width: 98%;
    padding: 1%;
    margin: 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

li > button:hover p {
    font-weight: bold;
}


.icon {
    width: 15px;
    margin: 3px -3px -1px -3px;
}

#search-container {
    background-color: #d9d9d9;
    border: 2px solid #000;
    border-radius: 5px;
 }