-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword.css
More file actions
90 lines (78 loc) · 1.36 KB
/
password.css
File metadata and controls
90 lines (78 loc) · 1.36 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
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
}
body {
background-color: #232424;
color: white;
}
.container {
margin: 10%;
width: 90%;
max-width: 700px;
}
.display {
width: 100%;
margin-top: 50px;
margin-bottom: 30px;
background: white;
color: #333;
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 13px;
border-radius: 8px;
}
.container h1 {
font-weight: 450;
font-size: 40px;
}
.container h1 span {
color: #019f55;
border-bottom: 4px solid #019f55;
padding-bottom: 12px;
font-weight: 700;
}
.display img {
width: 30px;
cursor: pointer;
}
.display input {
border: 0;
outline: 0;
width: 100%;
font-size: 24px;
}
.container img {
width: 28px;
margin-right: 10px;
filter: brightness(0) invert(1);
}
.btn {
display: flex;
justify-content: space-around;
}
.btn button {
border: 0;
outline: 0;
background-color: #019f55;
font-size: 20px;
font-weight: 300;
color: white;
display: flex;
align-items: center;
justify-content: center;
padding: 10px 18px;
border-radius: 8px;
cursor: pointer;
}
.btn button:hover {
background-color: #09be6a;
}
lord-icon {
height: 40px;
margin-right: 7px;
cursor: pointer;
}