aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/cupboard/cupboard.component.css
blob: 9c375828804667aa9220db5921fe2ed393d93340 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
:host {
    display: flex;
    justify-content: center;
}

#box {
    width: 800px;
    display: flex;
    flex-direction: column;
}

#menu {
      display: flex;

      margin: 10px;

}

.tab, .selected-tab {
   background-color: lightgray;
   border: 3px solid #000;
   border-top-left-radius: 5px;
   border-top-right-radius: 5px;
   margin-right: 5px;
   border-bottom: 0;
}

.selected-tab {
   background-color: white;
}

#create-form, #delete-form, #update-form {
   background-color: #3a3a3a;
   padding: 10px 20px 20px 20px;
   border: 2px solid #000;
   border-radius: 5px;
   visibility: visible;
    /*position: absolute;*/
}

#header {
    display: flex;
    gap: 20px;
    align-items: center;

    h1 {
        display: inline;
        width: min-content;
    }

    button {
        margin-top: 3px;
    }
}

#header2 {
    display: flex;
    flex-direction: column;
    gap: 10px
}

#searchArea {
    display: flex;

    form {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    input[type=text] {
        display: flex;
        width: 100%;
    }
}

#sortArea {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

select {
    font-size: 14pt;
    padding: 5px;
}