|
a |
|
b/web/static/style.css |
|
|
1 |
body { margin: 0; font-family: sans-serif }
|
|
|
2 |
* { font-family: inherit }
|
|
|
3 |
|
|
|
4 |
|
|
|
5 |
#menu ul
|
|
|
6 |
{
|
|
|
7 |
}
|
|
|
8 |
|
|
|
9 |
#menu ul li
|
|
|
10 |
{
|
|
|
11 |
display: inline;
|
|
|
12 |
line-height: 30px;
|
|
|
13 |
padding-left: 3px;
|
|
|
14 |
}
|
|
|
15 |
|
|
|
16 |
#menu ul li a
|
|
|
17 |
{
|
|
|
18 |
background-color: transparent;
|
|
|
19 |
background-repeat: repeat-x;
|
|
|
20 |
padding: 8px 12px 8px 12px;
|
|
|
21 |
font-size: 12px;
|
|
|
22 |
font-weight: bold;
|
|
|
23 |
}
|
|
|
24 |
|
|
|
25 |
#menu ul li a:hover
|
|
|
26 |
{
|
|
|
27 |
background: #aaa;
|
|
|
28 |
color: #4A4A24;
|
|
|
29 |
text-decoration: none;
|
|
|
30 |
}
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
a { text-decoration: none }
|
|
|
34 |
table td {
|
|
|
35 |
padding: 10;
|
|
|
36 |
border-right: 1px dotted black ;
|
|
|
37 |
border-collapse: collapse;
|
|
|
38 |
}
|
|
|
39 |
table td:last-child {
|
|
|
40 |
border-right: 0px;
|
|
|
41 |
}
|
|
|
42 |
form { margin: 0 }
|
|
|
43 |
input, select {
|
|
|
44 |
margin-top: 2px;
|
|
|
45 |
margin-bottom: 2px;
|
|
|
46 |
background: white;
|
|
|
47 |
border: 1px solid #999;
|
|
|
48 |
padding: 3px;
|
|
|
49 |
width: 100%;
|
|
|
50 |
color: #555;
|
|
|
51 |
}
|
|
|
52 |
input:focus, button:focus, select:focus{
|
|
|
53 |
border: 1px solid black;
|
|
|
54 |
color: black;
|
|
|
55 |
}
|
|
|
56 |
input[type=button],input[type=reset],input[type=submit] { width: 32%; }
|
|
|
57 |
input[type=button]:hover,input[type=reset]:hover,input[type=submit]:hover{ color:white; background: #ccc; cursor: pointer; }
|
|
|
58 |
input[type=reset]:hover,input[type=submit]:hover { }
|
|
|
59 |
input[name=before], input[name=after] { width: 45% }
|
|
|
60 |
tr { vertical-align: top }
|
|
|
61 |
|
|
|
62 |
hr { border: 1px solid #999 }
|
|
|
63 |
|