-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle-password.css
More file actions
101 lines (89 loc) · 1.7 KB
/
style-password.css
File metadata and controls
101 lines (89 loc) · 1.7 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
99
100
101
*{
margin: 0;
padding: 0;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
box-sizing: border-box;
}
body {
background-color:darkcyan;
color: #fff;
}
.container {
margin: 12%;
width: 90%;
max-width: 700px;
}
.display {
margin-top: 5%;
margin-right: 10%;
width: 100%;
background: lightyellow;
display: flex;
align-items: center;
justify-content: space-between;
padding: 26px 20px;
border-radius: 5px;
font-size: 100px;
font-weight: 1000;
}
.container h1 {
font-weight: 700;
font-size: 40px;
}
.container h1 span {
color: orange;
border-bottom: 4px solid orange;
padding-bottom: 2px;
}
.display img {
height: 60px;
width: auto;
cursor: pointer;
}
/* .display img:active {
cursor: context-menu;
} */
.display input {
border: 0;
outline: 0;
width: 50%;
font-size: 20px;
background: lightyellow;
overflow: hidden;
text-overflow: ellipsis;
}
.container button {
margin-top: 15px;
padding: 16px 26px;
border-radius: 5px;
border-color: grey solid;
background-color: darkolivegreen;
color: white;
font-size: 18px;
font-weight: 500;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.container button img {
width: 28px;
margin-right: 10px;
}
.container button:active {
cursor: progress;
}
.popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: black;
color: white;
padding: 12px 20px;
border-radius: 8px;
font-size: 16px;
display: none;
opacity: 0;
transition: opacity 0.5s ease-in-out;
}