-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword.css
More file actions
60 lines (54 loc) 路 1 KB
/
Copy pathpassword.css
File metadata and controls
60 lines (54 loc) 路 1 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
body {
margin: 0;
background-color: #1F2937;
color:white;
padding-top: 40px;
margin-left: 100px;
font-family: Karla, sans-serif;
font-size: 30px;
}
#rand-pass-text {
color: #4ADF86;
display: block;
}
#texts {
display: flex;
flex-direction: column;
align-items: start;
justify-content: center;
}
#generate-button {
width: 400px;
background-color: #10B981;
color: white;
border: none;
padding: 12px 24px;
border-radius: 4px;
margin-top: 40px;
cursor: pointer;
font-size: large;
}
.black-line {
width: 93%;
height: 1px;
background-color: #4B5563;
margin-top: 70px;
margin-right: 100px;
}
#password-buttons {
display: flex;
justify-content: start;
margin-top: 70px;
}
.display-pass {
width: 400px;
height: 60px;
background-color: #374151;
color: #10B981;
border: none;
padding: 12px 24px;
border-radius: 4px;
margin-right: 20px;
cursor: pointer;
font-size: large;
}