-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (100 loc) · 1.89 KB
/
styles.css
File metadata and controls
111 lines (100 loc) · 1.89 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
.main {
width: 60%;
height: 600px;
margin: 2rem auto;
}
.content {
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
width: 90%;
height: 95%;
background-color: #1f2937;
border: 2rem solid #161717;
border-radius: 1rem;
box-shadow: 10px 10px 5px 0px rgba(224, 234, 233, 0.75);
-webkit-box-shadow: 10px 10px 5px 0px rgba(224, 234, 233, 0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(224, 234, 233, 0.75);
}
.content-heading {
font-weight: 700;
font-size: 3rem;
color: #fff;
margin-bottom: 0;
}
.content-heading_span {
color: #10b981;
}
.content-paragraph {
color: #d5d4d8;
font-weight: 400;
margin-top: 1rem;
}
.password-label {
font-weight: 400;
color: #d5d4d8;
}
.content-btn {
margin: 1rem auto;
display: inline;
background-color: #10b981;
color: #d5d4d8;
width: 200px;
height: 40px;
font-weight: 700;
font-size: 1rem;
padding: 4px 8px;
border-radius: 4px;
border: none;
cursor: pointer;
}
.hr {
width: 90%;
display: block;
height: 2px;
color: #1c1c1c;
}
/* .generated-pwd {
flex-direction: row;
justify-content: space-around;
} */
#generated-password1,
#generated-password2,
#input-el {
/* display: inline; */
width: 200px;
height: 30px;
font-size: 1rem;
padding: 4px 8px;
margin: 0.5rem auto;
text-align: center;
border: none;
border-radius: 4px;
background-color: #d5d4d8;
color: #1c1c1c;
}
@media screen and (max-width: 768px) {
.content-heading {
font-size: 1.5rem;
}
.main {
width: 90%;
height: 100vh;
margin: 0 auto;
}
.password-label {
color: #fff;
}
.content {
border: 0.5rem solid #161717;
justify-content: space-around;
}
}