forked from sarthak-g/passwordGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
48 lines (45 loc) · 963 Bytes
/
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
body{
background: -webkit-gradient(radial, center center, 0, center center, 400, from(#1a82f7), to(#2F2727));
/* Safari 5.1+, Chrome 10+ */
background: -webkit-radial-gradient(circle, #1a82f7, #2F2727);
/* Firefox 3.6+ */
background: -moz-radial-gradient(circle, #1a82f7, #2F2727);
/* IE 10 */
background: -ms-radial-gradient(circle, #1a82f7, #2F2727);
height:600px;
}
.container{
width:600px;
margin:0 auto;
margin-top: 100px;
font-size:3em;
}
.out{
margin-bottom: 10px;
width:100%;
text-align: center;
color:#f63;
}
.myBtn{
padding:20px 20px;
font-size: 40px;
margin-bottom: 20px;
}
.pass{
width:400px;
float:left;
font-size: 30px;
color:#fff;
margin-left: 0;
padding: 20px;
background-color: #f63;
}
.in{
margin:0;
padding:4.5px;
float:left;
text-align: center;
background-color: #fff;
color:#f63;
width: 170px;
}