login_style.css
774 Bytes
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
body
{
background-color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
font-weight: normal;
text-decoration: none;
padding: 0px;
margin: 0px;
}
a
{
color: #ffffff;
}
#loginBox
{
position: absolute;
top: 50%;
width: 300px;
height: 260px;
margin-top: -130px;
left: 50%;
margin-left: -150px;
background-color: #444444;
background-image: url('login_background.png');
text-align: left;
color: #ffffff;
}
#loginContent
{
padding-top: 80px;
padding-left: 30px;
color: #ffffff;
}
label
{
font-size: 14px;
color: #ffffff;
display: block;
width: 70px;
}
input
{
background: #eeeeee;
color: #000000;
border-style: solid;
border: 1px inset #222222;
}