equal
deleted
inserted
replaced
|
1 /** |
|
2 * Based upon the AmaroK WebControl interface by: |
|
3 * Jonas Christian Drewsen ( kde at xspect dot dk ) |
|
4 * André Kelpe ( fs111 at web dot de ) |
|
5 * Peter C. Ndikuwera ( pndiku at gmail dot com ) |
|
6 */ |
|
7 |
|
8 html, body { |
|
9 margin: 0; |
|
10 padding: 0; |
|
11 height: 100%; |
|
12 font-size: 120%; |
|
13 } |
|
14 |
|
15 body { |
|
16 font-family: sans-serif; |
|
17 background-color: #212251; |
|
18 color: #ffffff; |
|
19 padding: 0; |
|
20 } |
|
21 |
|
22 body > table { |
|
23 width: 100%; |
|
24 height: 100%; |
|
25 } |
|
26 |
|
27 div.login-main { |
|
28 background-image: url(images/login.png); |
|
29 width: 240px; |
|
30 height: 276px; |
|
31 margin: 0 auto; |
|
32 padding: 40px; |
|
33 background-position: center center; |
|
34 background-repeat: no-repeat; |
|
35 } |
|
36 |
|
37 table.loginform { |
|
38 margin: 0 auto; |
|
39 } |
|
40 |
|
41 table.loginform td { |
|
42 padding-top: 20px; |
|
43 } |
|
44 |
|
45 table.loginform td.left { |
|
46 width: 33%; |
|
47 text-align: left; |
|
48 } |
|
49 |
|
50 table.loginform td.right { |
|
51 width: 66%; |
|
52 text-align: left; |
|
53 } |
|
54 |
|
55 table.loginform td.error, table.loginform td.success { |
|
56 text-align: center; |
|
57 color: #ff5321; |
|
58 padding-top: 2px; |
|
59 } |
|
60 |
|
61 table.loginform td.success { |
|
62 color: #53ff21; |
|
63 } |
|
64 |
|
65 table.loginform td.submit { |
|
66 font-size: larger; |
|
67 padding-top: 12px; |
|
68 } |
|
69 |
|
70 input { |
|
71 border-width: 0px; |
|
72 background-color: #b1b5cd; |
|
73 padding: 2px; |
|
74 color: #383f61; |
|
75 width: 120px; |
|
76 height: 28px; |
|
77 font-size: 23px; |
|
78 } |
|
79 |
|
80 input.submit { |
|
81 font-size: larger; |
|
82 padding: 2px 5px; |
|
83 height: 36px; |
|
84 font-size: 24px; |
|
85 } |
|
86 |
|
87 input.submit:hover, input.submit:focus { |
|
88 background-color: #b1b5cd; |
|
89 cursor: pointer; |
|
90 } |
|
91 |