-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (112 loc) · 1.9 KB
/
Copy pathstyle.css
File metadata and controls
127 lines (112 loc) · 1.9 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: monospace;
background: #1a1a2e;
color: #e0e0e0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.card {
background: #16213e;
border: 1px solid #0f3460;
border-radius: 8px;
padding: 32px;
width: 380px;
display: flex;
flex-direction: column;
gap: 20px;
}
h1 {
font-size: 1.2rem;
color: #e94560;
text-align: center;
letter-spacing: 2px;
text-transform: uppercase;
}
/* Password output box */
.output {
background: #0f3460;
border-radius: 4px;
padding: 12px 16px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
min-height: 48px;
}
#password {
word-break: break-all;
font-size: 0.95rem;
color: #a8dadc;
}
#copy-btn {
background: transparent;
border: 1px solid #e94560;
color: #e94560;
padding: 4px 10px;
border-radius: 4px;
cursor: pointer;
font-family: monospace;
font-size: 0.8rem;
white-space: nowrap;
}
#copy-btn:hover {
background: #e94560;
color: #fff;
}
/* Slider */
.option label {
display: block;
margin-bottom: 6px;
font-size: 0.9rem;
}
input[type="range"] {
width: 100%;
accent-color: #e94560;
}
/* Checkboxes */
.checkboxes {
display: flex;
flex-direction: column;
gap: 8px;
}
.checkboxes label {
font-size: 0.9rem;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
}
input[type="checkbox"] {
accent-color: #e94560;
width: 16px;
height: 16px;
}
/* Generate button */
#generate-btn {
background: #e94560;
color: #fff;
border: none;
padding: 12px;
border-radius: 4px;
font-size: 1rem;
font-family: monospace;
cursor: pointer;
letter-spacing: 1px;
}
#generate-btn:hover {
background: #c73652;
}
/* Small message (copy confirmation / error) */
#message {
text-align: center;
font-size: 0.8rem;
color: #a8dadc;
min-height: 16px;
}