-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
91 lines (87 loc) · 1.28 KB
/
style2.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
*
{
margin: 0;
padding: 0;
}
body
{
background-image: url(login.jpg);
background-size: cover;
background-position: center;
font-family: sans-serif;
}
.form-box-login
{
width: 400px;
background: rgba(0,0,0,0.8);
margin: 10% 50%;
padding: 40px 0;
color: rgba(255,255,255);
box-shadow: 0 0 20px 2px rgba(0,0,0,0.5);
border-radius: 12px;
}
h1
{
text-align: center;
margin-bottom: 40px;
}
.input-box
{
margin: 30px auto;
width: 80%;
border-bottom: 1px solid #fff;
padding-top: 10px;
padding-bottom: 5px;
}
.input-box input
{
width: 90%;
border: none;
outline: none;
background: transparent;
color: #fff;
font-size: 17px;
}
::placeholder
{
color: #fff;
}
.fa
{
margin-right: 10px;
}
.login-btn
{
margin: 50px auto;
padding: 10px 0;
width: 80%;
display: block;
outline: none;
border: 2px solid #fff;
cursor: pointer;
background: transparent;
color: #fff;
font-size: 20px;
}
.login-btn:hover
{
display: block;
color: #fff;
background: #007bff;
}
.para-reg
{
margin: 50px;
color: #fff;
font-size: 15px;
}
.para-reg a
{
margin-left: 10px;
color: #fff;
}
.para-reg a:hover
{
display: inline-block;
color: #007bff;
}