-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
88 lines (75 loc) · 1.28 KB
/
styles.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
table.search
{
border: 1px solid #787878;
padding: 10px;
background-color: #E8E8E8;
font-weight: bold;
}
table.data
{
font-size: 12px;
width: 100%;
}
table.data, td.records
{
border: 1px solid #A8A8A8;
border-collapse: collapse;
}
tr.header
{
background-color: #E0E0E0;
font-weight: bold;
}
tr.header:hover
{
background-color: #B0B0B0;
}
tr.records
{
background-color: #F8F8F8;
border-bottom: 1px solid black;
}
tr.records:hover
{
background-color: #E8E8E8;
}
td
{
padding: 5px;
white-space: nowrap;
}
input.submit
{
color: white;
font-weight: bold;
font-size: 14px;
background-color: #101010;
border: 1px solid black;
padding: 5px;
}
input.submit:hover
{
background-color: grey;
cursor:pointer;
}
ul#menu
{
padding: 8px;
}
ul#menu li
{
display: inline;
}
ul#menu li a
{
background-color: #101010;
color: white;
font-weight: bold;
padding: 10px 40px;
text-decoration: none;
border-radius: 4px 4px 0 0;
}
ul#menu li a:hover
{
background-color: #339900;
}