-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
146 lines (125 loc) · 2.45 KB
/
Copy pathpopup.css
File metadata and controls
146 lines (125 loc) · 2.45 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 400px;
min-height: 500px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #333;
}
.container {
padding: 20px;
}
h1 {
text-align: center;
color: white;
margin-bottom: 20px;
font-size: 24px;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.section {
background: white;
border-radius: 10px;
padding: 15px;
margin-bottom: 15px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.section h2 {
color: #333;
margin-bottom: 10px;
font-size: 18px;
border-bottom: 2px solid #667eea;
padding-bottom: 5px;
}
.controls {
margin-bottom: 15px;
}
.controls label {
display: block;
margin-bottom: 8px;
font-size: 14px;
}
.controls input[type="number"] {
width: 60px;
padding: 4px;
border: 1px solid #ddd;
border-radius: 4px;
margin-left: 5px;
}
.controls input[type="checkbox"], .controls input[type="radio"] {
margin-right: 5px;
}
.controls input[type="text"] {
padding: 4px;
border: 1px solid #ddd;
border-radius: 4px;
margin-left: 5px;
width: 100px;
}
.result-container {
display: flex;
gap: 5px;
align-items: center;
}
.result-container input {
flex: 1;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
font-family: monospace;
font-size: 12px;
background: #f9f9f9;
}
button {
padding: 8px 12px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 12px;
font-weight: bold;
transition: all 0.2s;
}
button:hover {
transform: translateY(-1px);
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
#generatePassword, #generateUuid, #generateApiKey {
background: #667eea;
color: white;
}
#copyPassword, #copyUuid, #copyApiKey {
background: #28a745;
color: white;
}
#generateAll {
background: #6f42c1;
color: white;
width: 100%;
padding: 10px;
font-size: 14px;
}
#copyAll {
background: #17a2b8;
color: white;
width: 100%;
padding: 10px;
font-size: 14px;
margin-top: 5px;
}
.quick-actions {
display: flex;
flex-direction: column;
gap: 5px;
}
/* Success animation */
@keyframes success {
0% { background-color: #28a745; }
50% { background-color: #20c997; }
100% { background-color: #28a745; }
}
.success {
animation: success 0.5s ease-in-out;
}