blob: ad8c1c2e508d9e720a3ccdce3524d65739765aa0 (
plain)
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
|
#container {
position: absolute;
max-width: 500px;
width: 70%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: grid;
gap: 10px;
background: #efefef99;
backdrop-filter: blur(10px);
padding: 10px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
}
#title {
font-size: 1.1em;
}
#close {
width: 25px;
height: 25px;
position: absolute;
top: 5px;
right: 5px;
cursor: pointer;
background: var(--page-background);
border-radius: 100%;
padding: 2px;
}
#button {
background: var(--primary);
padding: 10px;
color: var(--fg-primary);
font-weight: bold;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
text-align: center;
}
#error {
font-style: italic;
font-weight: bold;
color: #ee5151;
}
#error.hidden {
display: none;
}
|