-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (73 loc) · 1.3 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
body {
margin: 0;
font-family: "REM", sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5;
}
.pw_container {
width: 400px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.pw_header {
padding: 1rem;
border-bottom: 1px solid #ccc;
}
.pw {
width: 100%;
height: 70px;
display: flex;
align-items: center;
font-size: 1.5rem;
padding: 1rem;
}
.pw button {
padding: 0.25rem 1rem;
font-weight: bold;
border: none;
cursor: pointer;
background-color: #007bff;
color: #fff;
border-radius: 4px;
transition: all 0.3s ease;
}
.pw button:hover {
opacity: 0.8;
transform: translateY(-2px);
}
.pw_main {
padding: 0 1rem 1rem;
}
.form_control {
display: flex;
justify-content: space-between;
margin: 0.75rem 0;
}
.form_control label {
font-size: 1rem;
}
.form_control input[type=checkbox] {
margin-left: 0.5rem;
}
.generate {
display: block;
font-weight: bold;
padding: 1rem;
font-size: 1.5rem;
margin-top: 1rem;
border: none;
width: 100%;
cursor: pointer;
background-color: #28a745;
color: #fff;
border-radius: 4px;
transition: all 0.3s ease;
}
.generate:hover {
opacity: 0.8;
transform: translateY(-2px);
}/*# sourceMappingURL=style.css.map */