-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (58 loc) · 1.09 KB
/
style.css
File metadata and controls
66 lines (58 loc) · 1.09 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background: #3f51b5;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: #fff;
padding: 25px;
width: 700px;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.container h2 {
text-align: center;
margin-bottom: 20px;
}
.output-box {
display: flex;
margin-bottom: 15px;
}
#password {
width: 80%;
padding: 8px;
border: 1px solid #444;
border-radius: 5px 0 0 5px;
}
#copyBtn {
width: 20%;
border: none;
background: #4caf50;
color: white;
border-radius: 0 5px 5px 0;
cursor: pointer;
}
.options {
margin: 15px 0;
display: grid;
grid-template-columns: repeat(2, 1fr);
row-gap: 10px;
}
.generate {
width: 100%;
padding: 10px;
background: #ff5722;
color: white;
border: none;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}