blob: e45d9296017d9c44d3c59c852ca33b05cd3da3a1 (
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
|
: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;
}
}
|