File tree Expand file tree Collapse file tree 2 files changed +56
-2
lines changed
Expand file tree Collapse file tree 2 files changed +56
-2
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ /* Borderless table */
2+ .content table tbody tr {
3+ border-bottom : 1px solid var (--hx-color-gray-100 );
4+ border-top : none;
5+ }
6+
7+ .content table td ,
8+ .content table th {
9+ border : none;
10+ }
11+
12+ .content table td : first-child ,
13+ .content table th : first-child {
14+ padding-left : 0 ;
15+ }
16+
17+ .content table td : last-child ,
18+ .content table th : last-child {
19+ padding-right : 0 ;
20+ }
21+
22+ .content table thead {
23+ background : none;
24+ border-bottom : 1px solid var (--hx-color-gray-200 );
25+ }
26+
27+ .content table thead tr {
28+ border : none;
29+ }
30+
31+ .content table : is (html [class ~= "dark" ] * ) tbody tr {
32+ border-bottom-color : rgb (38 38 38 / 0.5 );
33+ }
34+
35+ .content table : is (html [class ~= "dark" ] * ) thead {
36+ border-bottom-color : var (--hx-color-neutral-800 );
37+ }
38+
39+ /* Footer padding */
40+ footer .hextra-footer > div .hextra-max-footer-width {
41+ padding-top : 0.5rem ;
42+ }
43+
44+ /* Media elements baseline styling (until Hextra PR is merged) */
45+ .content audio ,
46+ .content video {
47+ margin-inline : auto;
48+ border-radius : 0.375rem ;
49+ }
50+
51+ .content .plyr {
52+ margin-inline : auto;
53+ margin-block : 1.5rem ;
54+ border-radius : 0.375rem ;
55+ overflow : hidden;
56+ }
You can’t perform that action at this time.
0 commit comments