forked from InsaneSamie/Password-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (63 loc) · 1.23 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
body {
background-image: url(https://images.pexels.com/photos/1312488/pexels-photo-1312488.jpeg?cs=srgb&dl=pexels-emiliano-arano-1312488.jpg&fm=jpg);
background-size: cover;
margin: 0;
padding: 0;
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container{
color: rgb(15, 14, 14);
border: 10px solid #92CEEB ;
background: #92CEEB ;
font-family:Georgia, 'Times New Roman', Times, serif;
border-radius: 8%;
box-shadow: 1px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.inputs {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
gap: 1rem;
justify-content: center;
align-items: center;
}
.Include{
position: relative;
left: 30%;
padding: 8px 0px;
}
.len{
padding: 10px;
}
.generate-btn {
width: 100%;
height: 2rem;
border-color: black;
border-radius: 0.5rem;
background-color: #000;
color: #fff;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
margin-top: 1rem;
}
.generate-btn:hover {
background: #64BED8;
color: rgb(12, 12, 12);
}
.password {
margin-top: 1rem;
font-size: 2rem;
display: flex;
justify-content: center;
}