-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (72 loc) · 1.47 KB
/
style.css
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
* {
box-sizing: border-box;
}
body {
background-color: rebeccapurple;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-family: "Poppins", sans-serif;
margin: 0;
min-height: 100vh;
}
.pw-container {
background-color: rgb(46, 12, 80);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
min-width: 400px;
}
.pw-header {
padding: 1rem;
}
.pw {
background-color: rgb(69, 28, 109);
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%;
}