-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdialog.css
More file actions
79 lines (70 loc) · 1.27 KB
/
Copy pathdialog.css
File metadata and controls
79 lines (70 loc) · 1.27 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
74
75
76
77
78
79
/* Save Dialog Styles */
#saveDialog {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
z-index: 10000;
justify-content: center;
align-items: center;
padding: 10px;
font-family: "SpaceGrotesk", monospace;
color: #0ff;
}
.dialog-container {
background: #111;
padding: 20px;
border-radius: 0;
width: 100%;
max-width: 600px;
text-align: center;
border: 3px solid #0ff;
}
.dialog-title {
font-size: 24px;
margin: 0 0 10px;
color: #0ff;
font-weight: bold;
}
.dialog-subtitle {
font-size: 14px;
color: #0ff;
margin-bottom: 15px;
}
.metrics-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 8px;
margin-bottom: 15px;
}
.metric-box {
background: #222;
padding: 10px;
border-radius: 0;
border: 2px solid #0ff;
}
.metric-label {
font-size: 10px;
color: #0ff;
margin-bottom: 5px;
}
.metric-value {
font-size: 18px;
font-weight: bold;
color: #ff0;
}
.save-button {
background: #000;
color: #0ff;
border: 3px solid #0ff;
padding: 10px 30px;
font-size: 12px;
font-weight: bold;
cursor: pointer;
text-transform: uppercase;
}
.save-button:hover { background: #0ff; color: #000; }
.save-button:active { background: #00f; color: #fff; }