Parent: [5ba538] (diff)

Download this file

style.css    80 lines (67 with data), 1.3 kB

 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
body {
margin: 10;
font-family: sans-serif;
}
* {
font-family: inherit;
}
ul#menu {
padding: 0;
margin: 20 0 20 0;
}
ul#menu li {
display: inline;
line-height: 30px;
padding-left: 3px;
}
ul#menu li a {
background-color: #eee;
padding: 8px 12px 8px 12px;
text-decoration: none;
border-radius: 4px 4px 0 0;
font-size: 12px;
font-weight: bold;
}
ul#menu li a:hover {
background-color: #aaa;
color: #4A4A24;
text-decoration: none;
}
a {
text-decoration: none;
}
table {
margin: 0 0 0 10;
}
table td {
padding: 10;
border-right: 1px dotted black ;
border-collapse: collapse;
}
table td:last-child {
border-right: 0px;
}
form {
margin: 0;
}
input, select {
margin-top: 2px;
margin-bottom: 2px;
background: white;
border: 1px solid #999;
padding: 3px;
color: #f55;
}
input:focus, button:focus, select:focus{
border: 1px solid black;
color: black;
}
input[type=button],input[type=reset],input[type=submit] {
}
input[type=button]:hover,input[type=reset]:hover,input[type=submit]:hover{
color:white; background: #ccc; cursor: pointer;
}
input[type=reset]:hover,input[type=submit]:hover {
}
tr { vertical-align: top }
hr { border: 1px solid #999 }