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
79body {
margin: 0;
display: flex;
justify-content: center;
align-items: start;
font-family: "Roboto", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings:
"wdth" 100;
color: aliceblue;
}
#container {
display: flex;
flex-direction: column;
margin-top: 40px;
padding: 50px 40px;
background-color: #1F2937;
display: flex;
width: 400px;
}
#btn-pwd{
background-color: #4ADF86;
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 16px;
}
#divider{
border-top: 2px solid #2F3E53; /* You can adjust the style here */
margin-top: 20px; /* Add some spacing between paragraphs */
padding-top: 20px; /* Add spacing above the divider */
}
span
{
color: #4ADF86;
}
.pwd-box{
vertical-align: middle;
width: auto;
height: auto;
background-color: #2F3E53;
border-radius: 3px;
color: #4ADF86;
}
#passwords{
display: flex;
flex-direction: center;
justify-content: center;
gap: 100px;
}
#input-area{
display: flex;
justify-content: start;
align-items: center;
}
#userInput{
width: 150px;
height: 20px;
border: solid 1px #4ADF86;
border-radius: 5px;
background-color: transparent;
color: antiquewhite;
margin-right: 50px;
}
#btn-copy{
background-color: #4ADF86;
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 16px;
}