aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/cupboard/cupboard.component.css
blob: 4116a778e4e10f61b95e09a9c05cd0f796cc341c (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
: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: #d9d9d9;
   padding: 10px 20px 20px 20px;
   border: 2px solid #000;
   border-radius: 5px;
   visibility: visible;
}

#create-button {
   padding: 10px 20px;
}