-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresmon.css
70 lines (58 loc) · 1006 Bytes
/
resmon.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
body {
font-family: Verdana, Arial, helvetica, sans-serif;
}
h1 {
margin: 0;
font-size: 120%;
}
h2 {
margin: 0;
font-size: 110%;
}
.item {
border: 1px solid black;
border-left: 10px solid #999;
padding: 1em;
margin: 2em;
background-color: #eeeeee;
}
.info {
float: right;
font-size: 80%;
padding: 0;
margin: 0;
}
table {
border: 1px solid black;
background-color: #eeeeee;
border-collapse: collapse;
margin: 1em;
font-size: 80%;
}
th {
font-size: 100%;
font-weight: bold;
background-color: black;
color: white;
}
td {
padding-left: 1em;
padding-right: 1em;
}
a {
text-decoration: none;
}
a.metrics, a.metrics:visited {
color: black;
}
a.metrics table {
display: none;
}
a.metrics:hover table {
display: block;
position: relative;
top: 1em;
right: 1em;
max-width: 95%;
overflow: hidden;
}