]> git.proxmox.com Git - ceph.git/blame - ceph/src/rocksdb/docs/_sass/_tables.scss
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / rocksdb / docs / _sass / _tables.scss
CommitLineData
7c673cae
FG
1table {
2 background: $lightergrey;
3 border: 1px solid $lightgrey;
4 border-collapse: collapse;
5 display:table;
6 margin: 20px 0;
7
8 thead {
9 border-bottom: 1px solid $lightgrey;
10 display: table-header-group;
11 }
12 tbody {
13 display: table-row-group;
14 }
15 tr {
16 display: table-row;
17 &:nth-of-type(odd) {
18 background: $greyish;
19 }
20
21 th, td {
22 border-right: 1px dotted $lightgrey;
23 display: table-cell;
24 font-size: 14px;
25 line-height: 1.3em;
26 padding: 10px;
27 text-align: left;
28
29 &:last-of-type {
30 border-right: 0;
31 }
32
33 code {
34 color: $green;
35 display: inline-block;
36 font-size: 12px;
37 }
38 }
39
40 th {
41 color: #000000;
42 font-weight: bold;
43 font-family: $header-font-family;
44 text-transform: uppercase;
45 }
46 }
47}