-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (63 loc) · 1.44 KB
/
style.css
File metadata and controls
73 lines (63 loc) · 1.44 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
body {
font-family: Arial, sans-serif;
background-color: #333;
color: white;
text-align: center;
}
.container {
max-width: 750px;
margin: auto;
padding: 10px;
}
#password-display {
margin: 10px auto;
padding: 15px;
border: 2px solid #666;
background-color: #1e1e1e;
color: #00ff99;
font-family: 'Fira Code', monospace;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 255, 153, 0.2);
max-width: 700px;
overflow-x: auto;
}
#password-display pre {
margin: 0;
white-space: pre-wrap;
word-break: break-all;
}
#password-code {
display: block;
font-size: 1.1rem;
letter-spacing: 0.03em;
}
#password-strength {
/* Common styles for the strength label */
margin: 10px;
padding: 10px;
border-radius: 2px;
color: navy;
font-weight: bold;
}
.weak { background-color: indianred; }
.moderate { background-color: orangered; }
.strong { background-color: yellowgreen; }
.very-strong { background-color: lightskyblue; }
.incredible { background-color: purple; }
#password-length {
font-size: 1em; /* Text inside dropdown */
padding: 10px 0px; /* Bigger box */
margin: 0 5px;
}
button {
font-size: 1em; /* Larger text for emojis */
padding: 10px 10px; /* Larger padding for bigger buttons */
margin: 0px;
background-color: #555;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #777;
}