-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (71 loc) · 1.22 KB
/
style.css
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
#dashboard{
position: relative;
height: 100vh;
width: 100%;
}
.modals{
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: -1;
}
.modal{
position: absolute;
display: flex;
flex-direction: column;
width: 50%;
}
.modal-close{
height: 0;
z-index: -5;
visibility: hidden;
}
.modal-open{
z-index: 50 !important;
height: max-content;
visibility: visible;
}
.modal form {
user-select: none;
display: flex;
flex-direction: column;
gap: 0.5rem;
padding: 1rem;
border-radius: 1rem;
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.modal form h2{
font-size: 2rem;
}
.modal form label{
font-size: 1.5rem;
font-weight: 500;
}
.modal form input{
font-size: 1rem;
height: 2rem;
padding-left: 1.5rem;
}
.modal form select {
font-size: 1rem;
height: 2rem;
padding-left: 1.5rem;
}
.modal form button{
cursor: pointer;
border: none;
outline: none;
height: 2rem;
font-size: 1rem;
}