-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
73 lines (61 loc) · 1.01 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
body{
margin:0;
padding:0;
background:url(images/bg.jpg);
background-size: cover;
font-family:sens-serif;
}
.loginbox{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
height:420px;
width:350px;
padding: 80px 40px;
box-sizing: border-box;
background: rgba(255,255,255,.4);
}
h3{
margin:0;
padding:0 0 20px;
color: blue;
text-align: center;
}
.loginbox p{
margin:0;
padding:0;
font-weight:bold;
color:black;
}
.loginbox input{
width:100%;
margin-bottom: 20px;
}
input{
border: none;
border-bottom: 1px solid black;
background: transparent;
outline:none;
height:40px;
color:black;
font-size:16px;
}
::placeholder{
color:rgba(0,0,0,.9);
}
.loginbox input[type="submit"]
{
border:none;
outline:none;
height:40px;
color:black;
font-size:16px;
background:green;
cursor:pointer;
border-radius:20px;
}
.loginbox input[type="submit"]:hover{
background: lightgreen;
color: blue;
}