-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (97 loc) · 1.86 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (97 loc) · 1.86 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
* {
box-sizing: border-box;
}
body {
background: #0f172a;
color: #fff;
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
background: #1e293b;
padding: 20px;
border-radius: 10px;
width: 350px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
h2 {
text-align: center;
margin-top: 0;
margin-bottom: 20px;
font-size: 22px;
}
.result-container {
background: #0f172a;
padding: 12px;
font-size: 18px;
text-align: center;
margin-bottom: 8px;
border-radius: 5px;
word-break: break-all;
min-height: 45px;
display: flex;
align-items: center;
justify-content: space-between;
}
.result-container span {
overflow: hidden;
text-overflow: ellipsis;
margin-right: 10px;
}
.btn-copy {
background: #334155;
color: #fff;
border: none;
padding: 6px 10px;
border-radius: 4px;
cursor: pointer;
font-size: 12px;
transition: background 0.2s;
}
.btn-copy:hover {
background: #475569;
}
.strength-meter {
height: 4px;
background: #334155;
margin-bottom: 20px;
border-radius: 2px;
transition: all 0.3s ease;
width: 0%;
}
.setting {
display: flex;
justify-content: space-between;
align-items: center;
margin: 12px 0;
font-size: 14px;
}
.setting input[type="number"] {
width: 50px;
padding: 4px;
background: #0f172a;
border: 1px solid #334155;
color: #fff;
border-radius: 4px;
text-align: center;
}
.btn {
background: #3b82f6;
color: white;
border: none;
width: 100%;
padding: 12px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
font-weight: bold;
margin-top: 10px;
transition: background 0.2s;
}
.btn:hover {
background: #2563eb;
}