-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (103 loc) · 1.88 KB
/
Copy pathstyles.css
File metadata and controls
117 lines (103 loc) · 1.88 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Arial, sans-serif;
}
body {
background-color: #f5f7fa;
height: 100vh;
display: flex;
flex-direction: column;
}
.title-bar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
padding: 12px 16px;
border-bottom: 1px solid #e1e4e8;
-webkit-app-region: drag;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.title {
font-weight: 600;
font-size: 18px;
color: #1a73e8;
}
.window-controls {
display: flex;
gap: 8px;
-webkit-app-region: no-drag;
}
.window-controls button {
border: none;
background: none;
cursor: pointer;
width: 28px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
transition: background-color 0.2s;
}
.window-controls button:hover {
background-color: #f1f1f1;
}
#close:hover {
background-color: #ff5252;
color: white;
}
.container {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 24px;
gap: 16px;
}
.container input[type="number"] {
width: 80%;
max-width: 400px;
padding: 10px 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
}
.container button {
background-color: #1a73e8;
color: white;
border: none;
padding: 10px 20px;
border-radius: 6px;
font-size: 14px;
cursor: pointer;
transition: background-color 0.2s;
}
.container button:hover {
background-color: #1669c1;
}
#status {
font-size: 14px;
color: #333;
text-align: center;
max-width: 400px;
word-wrap: break-word;
}
.progress-container {
width: 80%;
max-width: 400px;
height: 20px;
background-color: #ddd;
border-radius: 10px;
overflow: hidden;
margin-top: 10px;
}
#progress-bar {
width: 0%;
height: 100%;
background-color: #1a73e8;
transition: width 0.2s;
}