-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDialog.module.css
More file actions
63 lines (57 loc) · 1.66 KB
/
Dialog.module.css
File metadata and controls
63 lines (57 loc) · 1.66 KB
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
.dialog_container {
--src-dialog-background-color: var(--src-color-05);
--src-dialog-border-color: var(--src-color-01);
--src-dialog-color: var(--src-color-04);
--src-dialog-header-background-color: var(--src-color-02);
--src-dialog-header-border-color: var(--src-color-01);
--src-dialog-header-color: var(--src-color-04);
align-items: center;
backdrop-filter: blur(4px) grayscale(100%);
display: flex;
flex-direction: row;
height: 100vh;
justify-content: center;
left: 0px;
position: fixed;
top: 0px;
width: 100vw;
z-index: 9999;
}
.dialog_container > .dialog {
background-color: var(--src-dialog-background-color);
border: 1px solid var(--src-dialog-border-color);
border-radius: 5px;
box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.12);
color: var(--src-dialog-color);
display: flex;
flex-direction: column;
overflow: hidden;
}
.dialog_container > .dialog > .buttons {
display: flex;
flex-direction: row;
gap: 20px;
justify-content: flex-end;
padding: 20px;
}
.dialog_container > .dialog > .buttons > button {
width: 100%;
}
.dialog_container > .dialog > .content {
align-items: center;
display: flex;
flex-direction: row;
justify-content: center;
padding: 20px;
}
.dialog_container > .dialog > .header {
align-items: center;
background: linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
background-color: var(--src-dialog-header-background-color);
border-bottom: 1px solid var(--src-dialog-header-border-color);
color: var(--src-dialog-header-color);
display: flex;
flex-direction: row;
justify-content: center;
padding: 10px;
}