-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
127 lines (127 loc) · 2.72 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
*{
margin: 0;
box-sizing: border-box;
}
body{
color: white;
font-weight: 300;
font-size: 1.3rem;
background-color: rgb(13, 13, 87);
font-family: 'Balsamiq Sans', cursive;
}
.container{
height: 100vh;
padding: 20px;
display: flex;
flex-wrap: wrap;
align-items: center;
flex-direction: column;
justify-content: space-around;
}
.container .box{
width: 400px;
height: 470px;
display: flex;
padding-top: 80px;
position: relative;
align-items: center;
border-radius: 10px;
flex-direction: column;
background-color: #0C154A;
justify-content: space-around;
box-shadow: 3px 3px 3px #080E33 , -2px -2px 2px #03136d;
}
img{
left: 0;
right: 0;
top: 20px;
margin: auto;
position: absolute;
text-align: center;
}
#password{
width: 80%;
margin: 10px;
display: flex;
overflow: hidden;
border-radius: 5px;
align-items: center;
justify-content: center;
background-color: #f2f3f5;
box-shadow: 0px 0px 5px 0px white;
}
#password input{
width: 90%;
border: none;
outline: none;
font-size: 16px;
padding-left:15px;
background-color: #f2f3f5;
font-family:Arial, Helvetica, sans-serif;
}
#password button{
border: none;
outline: none;
cursor: pointer;
padding: 5px 10px;
text-align: right;
background-color: #f2f3f5;
font-family: 'Balsamiq Sans', cursive;
}
#length , #uppercase , #lowercase , #special , #numbers{
width: 80%;
display: flex;
flex-wrap: wrap;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
#length lable , #uppercase lable , #lowercase lable , #special lable , #numbers lable{
font-size: 1rem;
font-weight: 600;
vertical-align: middle;
font-family: 'Montserrat';
}
#length input{
width: 50px;
padding: 5px;
border: none;
outline: none;
font-size: 1rem;
text-align: center;
border-radius: 5px;
vertical-align: middle;
background-color: #f2f3f5;
box-shadow: 0px 0px 5px 0px white;
}
#uppercase input,#lowercase input,#special input,#numbers input{
width: 50px;
height: 30px;
}
.container .box>button{
width: 80%;
margin: 10px;
border: none;
color: #fff;
outline: none;
cursor: pointer;
font-size: 1rem;
font-weight: bold;
padding: 15px 10px;
background: linear-gradient(#03136d , #0C154A);
box-shadow: 3px 3px 3px #080E33 , -2px -2px 2px #03136d;
}
.container .box>button:hover{
color: #ccc;
box-shadow: 5px 5px 5px #080E33 , -3px -3px 3px #03136d;
}
.container .box>button:active{
box-shadow: none;
}
#copy{
right: 0;
bottom: 0;
margin: 0px 10px;
position: fixed;
font-size: medium;
}