-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
98 lines (85 loc) · 1.61 KB
/
index.css
File metadata and controls
98 lines (85 loc) · 1.61 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
body {
margin: 0;
background: #1f2937;
font-family: "Karla", sans-serif;
padding: 70px 50px;
max-width: 550px;
}
.text-color-green {
color: #55f991;
}
.title {
color: #ffffff;
font-weight: 800;
margin: 0 150px 5px 0;
}
.description {
color: #d5d4d8;
font-weight: 400;
margin: 0 0 50px 0;
}
#password-length-container {
display: flex;
align-items: center;
margin-bottom: 30px;
color: #d5d4d8;
font-weight: 400;
}
#password-length {
margin-left: 10px;
background: #273549;
border: none;
width: 70px;
height: 40px;
color: #ffffff;
padding: 5px;
font-size: 16px;
}
#password-type-title {
color: #d5d4d8;
font-weight: 400;
margin: 0;
}
#password-type-container {
display: flex;
flex-direction: column;
margin-bottom: 30px;
color: #d5d4d8;
font-weight: 400;
width: 150px;
}
.checkbox-container {
display: flex;
justify-content: space-between;
}
#generate-password-btn {
background: #10b981;
color: #ffffff;
padding: 10px 15px;
border: none;
border-radius: 6px;
margin-bottom: 20px;
}
.divider {
border: 1px solid #2f3e53;
margin-bottom: 20px;
}
#random-password-container {
display: flex;
justify-content: space-between;
}
.random-password-one,
.random-password-two {
padding: 10px 20px;
background: #273549;
border: none;
border-radius: 6px;
width: 210px;
height: 40px;
color: #55f991;
}
.random-password-one:hover,
.random-password-two:hover {
background: black;
transform: scale(1.05); /* Slightly enlarge the button */
}