blob: 211ee175307e503cbac5a15c5e07aa76231d5074 (
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
|
#box {
/*position: absolute;*/
/*background-color: rgba(0, 0, 0, 0.5);*/
/*display: flex;*/
/*height: 100%;*/
/*top: 0;*/
/*left: 0;*/
/*right: 0;*/
/*z-index: 5;*/
/*justify-content: center;*/
padding: 10px;
border-style: solid;
border-width: 1px;
border-color: var(--secondary-color);
background-color: var(--tertiary-color);
border-radius: 5px;
position: relative;
width: 500px;
}
#create-form, #delete-form, #update-form {
/*margin-top: 50px;*/
/*padding: 10px 20px 20px 20px;*/
/*border: 2px solid #000;*/
/*border-radius: 5px;*/
/*visibility: visible;*/
/*position: absolute;*/
display: flex;
flex-direction: column;
gap: 10px;
div {
display: flex;
flex-direction: column;
}
}
#closeButton {
position: absolute;
width: 35px;
right: 10px;
}
textarea {
height: 200px;
}
label {
padding: 3px;
}
.red {
color: red;
}
|