-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (56 loc) · 1.03 KB
/
style.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
body
{
line-height: 1.6em;
}
#events-table
{
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
font-size: 16px;
background: #fff;
margin: 45px;
width: 480px;
border-collapse: collapse;
text-align: left;
}
#events-table thead
{
font-size: 18px;
font-weight: normal;
color: #039;
padding: 10px 8px;
border-bottom: 2px solid #6678b1;
}
#events-table td
{
border-bottom: 1px solid #ccc;
color: #669;
padding: 6px 8px;
}
#events-table tbody tr:hover td
{
color: #009;
text-decoration:underline;
}
#events-table a:link {
/* Applies to all unvisited links */
text-decoration: none;
font-weight: normal;
color: #669;
}
#events-table a:visited {
/* Applies to all visited links */
text-decoration: none;
font-weight: normal;
color: #669;
}
#events-table a:hover {
/* Applies to links under the pointer */
text-decoration: underline;
color: #009;
font-weight: normal;
text-decoration:underline;
}
#events-table a:active {
/* Applies to activated links */
text-decoration: underline;
}