-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (68 loc) · 1.18 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 auto;
padding: 0;
box-sizing: border-box;
background-color: rgb(101, 99, 192);
height: 100vh;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.generator {
border: 1px solid black;
padding: 10px;
background-color: rgb(2, 58, 180);
color: white;
width: 50%;
text-align: center;
}
.password-container {
padding: 10px;
display: flex;
}
.password {
display: flex;
justify-content: space-between;
padding: 10px;
width: 100%;
background-color: black;
}
.password span {
margin: auto 0;
}
.result {
word-break: break-all;
max-width: calc(100% - 40px);
}
.clipboard {
cursor: pointer;
background-color: black;
font-size: 30px;
border: none;
color: white;
}
.password-options {
margin: 0 12px;
}
.options {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
#length {
width: 30px;
border: none;
}
.btngenerator {
cursor: pointer;
width: 100%;
background-color: rgb(70, 111, 199);
color: white;
padding: 10px;
border: none;
}