-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontentStyles.css
More file actions
73 lines (64 loc) · 1.16 KB
/
contentStyles.css
File metadata and controls
73 lines (64 loc) · 1.16 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
64
65
66
67
68
69
70
71
72
73
#wt-overlay-root {
position: fixed;
inset: 0;
z-index: 2147483647;
display: flex;
align-items: center;
justify-content: center;
pointer-events: all;
}
#wt-overlay-backdrop {
position: absolute;
inset: 0;
backdrop-filter: blur(10px);
background: rgba(15, 20, 28, 0.6);
}
#wt-modal {
position: relative;
width: min(420px, calc(100vw - 40px));
background: #ffffff;
border-radius: 14px;
padding: 20px;
box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
color: #14233a;
font-family: "Segoe UI", Tahoma, sans-serif;
}
#wt-modal h2 {
margin: 0;
font-size: 1.2rem;
}
#wt-modal p {
margin: 10px 0 16px;
line-height: 1.35;
}
#wt-duration-form {
display: flex;
gap: 10px;
align-items: center;
}
#wt-duration-input {
flex: 1;
font-size: 1rem;
padding: 10px 12px;
border: 1px solid #ced5df;
border-radius: 8px;
}
#wt-start-button {
border: none;
border-radius: 8px;
background: #0f59e5;
color: white;
font-weight: 600;
padding: 11px 14px;
cursor: pointer;
}
#wt-start-button:disabled {
opacity: 0.7;
cursor: default;
}
#wt-error {
color: #b40f24;
min-height: 1.2em;
margin-top: 10px;
font-size: 0.9rem;
}