-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpass.css
More file actions
84 lines (74 loc) · 1.56 KB
/
pass.css
File metadata and controls
84 lines (74 loc) · 1.56 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
* {
box-sizing: border-box;
}
body {
background-color:rgb(88, 87, 87);
color: rgb(102, 36, 36);
display: flex;
align-items: center;
justify-content: center;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
margin: 2px;
min-height: 100vh;
}
.pw-container {
background-color: rgb(22, 42, 80);
border-radius: 5px;
box-shadow: 0 4px 10px rgba(148, 235, 213, 0.5);
min-width: 400px;
}
.pw-header {
padding: 1rem;
}
.pw {
background-color:rgb(0, 0, 0);
display: flex;
font-size: 1.5rem;
align-items: center;
height: 70px;
width: 100%;
position: relative;
padding: 1rem;
overflow: auto;
}
.pw button {
background-color: white;
border: none;
color: rgb(29, 2, 56);
cursor: pointer;
font-family: inherit;
font-weight: bold;
padding: 0.25rem;
position: absolute;
top: 0;
right: 0;
transform: translate(0, 20%);
transition: opacity 0.2s ease, transform 0.2s ease;
opacity: 0;
}
.pw:hover button {
opacity: 1;
transform: translate(0, 0%);
}
.pw-body {
padding: 0 1rem 1rem;
}
.form-control {
color: #eee;
display: flex;
justify-content: space-between;
margin: 0.75rem 0;
}
.generate {
background-color: #ecb602;
border: none;
color: rebeccapurple;
cursor: pointer;
display: block;
font-size: 1.5rem;
font-weight: bold;
padding: 0.75rem;
margin-top: 1rem;
width: 100%;
}