-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (83 loc) · 1.44 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
82
83
84
85
86
87
88
89
90
91
92
93
94
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
* {
box-sizing: border-box;
}
header {
color: white;
align-items: center;
position: absolute;
justify-content: center;
margin-bottom: 650px;
font-size: 2rem;
width: 70%;
}
h3{
text-align: center;
}
hr {
width: 70%;
}
body {
background-color: black;
color: black;
display: flex;
align-items: center;
justify-content: center;
font-family: "Poppins", sans-serif;
margin: 0;
min-height: 100vh;
}
.pw-header {
padding: 1rem;
}
.pw {
background-color: white;
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: white;
border: none;
color: black;
cursor: pointer;
display: block;
font-size: 1.5rem;
font-weight: bold;
padding: 0.75rem;
margin-top: 1rem;
width: 100%;
}