File: table.css

package info (click to toggle)
python-requests-cache 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,024 kB
  • sloc: python: 7,029; makefile: 4
file content (23 lines) | stat: -rw-r--r-- 508 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Slightly modified table styles from Furo theme*/

table.docutils {
  margin-left: 0.5em;
  border-radius: 0.2rem;
  border-spacing: 0;
  border-collapse: collapse;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12),
    0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

table.docutils td {
  text-align: left;
}
table.docutils tr {
  transition: background-color 0.125s;
}
table.docutils tr:hover {
  background-color: rgba(0, 0, 0, 0.035);
  box-shadow: inset 0 0.05rem 0 #fff;
}