-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdialog.css
More file actions
56 lines (49 loc) · 991 Bytes
/
Copy pathdialog.css
File metadata and controls
56 lines (49 loc) · 991 Bytes
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
#dialog_frame {
width: 90%;
max-width: 500px;
padding-bottom: 10px;
transition: 300ms;
border: 2px solid gray;
border-radius: 25px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
position: fixed;
z-index: 2;
background-color: white;
filter: drop-shadow(0 0 100px black);
max-height: 90%;
overflow-y: auto;
padding-left: 10px;
padding-right: 10px;
}
.dialog_hidden {
visibility: hidden;
display: none;
opacity: 0;
filter: drop-shadow(0 0 0px black);
}
.dialog_button {
border: 1px solid black;
border-radius: 10px;
padding: 10px;
cursor: pointer;
margin-left: 10px;
outline: none;
transform-origin: center;
transition: 0.3s;
}
.dialog_button:hover {
transform: scale(1.2);
}
#dialog_text {
text-align: center;
}
#dialog_header {
text-align: center;
}
#dialog_buttons {
margin-left: 50%;
transform: translateX(-50%);
width: fit-content;
}