• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* sort indicator in column headings */
2.sortArrow {
3  color: grey;
4}
5
6thead {
7  font-weight: bold;
8  text-align: center;
9}
10
11table {
12  padding: 10px;  /* Padding makes it look nicer. */
13  margin: 0 auto;  /* center table on the page */
14  border-collapse: collapse;  /* this is like old cellpadding */
15}
16
17/* like cellspacing? */
18td {
19  padding: 5px;
20}
21
22/* Built-in support for R NA values */
23.na {
24  color: darkred;
25}
26
27/* Numbers aligned on the right, like Excel */
28.num {
29  text-align: right;
30}
31
32.highlight {
33  background-color: #f0f0f0;
34}
35
36tbody tr:hover {
37  background-color: lightcyan;
38}
39
40