blob: f4b6828fdbee9e4c33a178be76e323cc32f10489 (
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
|
:host {
display: flex;
justify-content: space-evenly;
border: 2px solid #000;
border-radius: 5px;
padding: 10px 20px;
> div {
width: 40%;
}
}
#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: 0px;
}
.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;
}
|