-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpass.css
More file actions
57 lines (57 loc) · 1.11 KB
/
pass.css
File metadata and controls
57 lines (57 loc) · 1.11 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
*{
margin:0;
padding:0;
font-family:century gothic;
}
body{
background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(passw.jpg);
height:700px;
background-size:cover;
background-position:center;
}
.form-design{
width:cover;
height:cover;
padding:10% 25% 0;
margin:auto;
}
.form{
position:relative;
z-index:1;
background:white;
max-width:400px;
max-height:500px;
margin:fixed;
padding:60px;
text-align:center;
background:#4daf7c;
}
.form input{
font-family:roboto;
outline:1;
background:#f2f2f2;
width:100%;
border:1px solid black;
border-radius:10px;
margin:0 0 15px;
padding:25px;
box-sizing:border-box;
font-size:20px;
}
.form input:hover{
border:1px solid blue;
}
.form button{
font-family:roboto;
text-transform:uppercase;
outline:0;
background:#ca6924;
width:100%;
height:10%;
border:1px solid black;
border-radius:20px;
padding:10px;
color:white;
font-size:20px;
cursor:pointer;
}