blob: 6f7a7ddb2089d10c18366cce23795dfebf089df7 [file] [log] [blame]
Hao Zhuad4ea392020-08-10 01:24:50 -04001/*!
2 * lightable v0.0.1
3 * Copyright 2020 Hao Zhu
4 * Licensed under MIT (https://github.com/haozhu233/kableExtra/blob/master/LICENSE)
5 */
6
7.lightable-minimal {
8 border-collapse: separate;
9 border-spacing: 16px 1px;
10 width: 100%;
Hao Zhud7762a42020-08-10 09:05:47 -040011 margin-bottom: 10px;
Hao Zhuad4ea392020-08-10 01:24:50 -040012}
13
Hao Zhu33b865f2020-08-18 02:10:43 -040014.lightable-minimal td {
15 margin-left: 5px;
16 margin-right: 5px;
17}
18
19.lightable-minimal th {
20 margin-left: 5px;
21 margin-right: 5px;
22}
23
Hao Zhu8b16a6c2020-08-18 16:59:20 -040024.lightable-minimal thead tr:last-child th {
25 border-bottom: 2px solid #00000050;
Hao Zhuad4ea392020-08-10 01:24:50 -040026 empty-cells: hide;
Hao Zhu33b865f2020-08-18 02:10:43 -040027
Hao Zhuad4ea392020-08-10 01:24:50 -040028}
29
30.lightable-minimal tbody tr:first-child td {
31 padding-top: 0.5em;
32}
33
Hao Zhu81c335c2020-08-10 09:20:41 -040034.lightable-minimal.lightable-hover tbody tr:hover {
Hao Zhuad4ea392020-08-10 01:24:50 -040035 background-color: #f5f5f5;
36}
37
Hao Zhu8b16a6c2020-08-18 16:59:20 -040038.lightable-minimal.lightable-striped tbody tr:nth-child(even) {
Hao Zhuad4ea392020-08-10 01:24:50 -040039 background-color: #f5f5f5;
40}
41
42.lightable-classic {
43 border-top: 2px solid #111111;
Hao Zhuad4ea392020-08-10 01:24:50 -040044 width: 100%;
Hao Zhud7762a42020-08-10 09:05:47 -040045 margin-bottom: 10px;
Hao Zhuad4ea392020-08-10 01:24:50 -040046}
47
Hao Zhu33b865f2020-08-18 02:10:43 -040048.lightable-classic td {
49 padding-left: 5px;
50 padding-right: 5px;
51}
52
53.lightable-classic th {
54 padding-left: 5px;
55 padding-right: 5px;
56}
57
Hao Zhuad4ea392020-08-10 01:24:50 -040058.lightable-classic thead tr:last-child th {
59 border-bottom: 1px solid #111111;
60}
61
Hao Zhu8b16a6c2020-08-18 16:59:20 -040062.lightable-classic tbody tr:last-child td {
63 border-bottom: 2px solid #111111;
64}
65
Hao Zhu81c335c2020-08-10 09:20:41 -040066.lightable-classic.lightable-hover tbody tr:hover {
Hao Zhu33b865f2020-08-18 02:10:43 -040067 background-color: #F9EEC1;
Hao Zhuad4ea392020-08-10 01:24:50 -040068}
69
Hao Zhu8b16a6c2020-08-18 16:59:20 -040070.lightable-classic.lightable-striped tbody tr:nth-child(even) {
Hao Zhuad4ea392020-08-10 01:24:50 -040071 background-color: #f5f5f5;
72}
73
Hao Zhud8a2e332020-08-11 01:26:32 -040074.lightable-classic-2 {
75 border-top: 3px double #111111;
Hao Zhud8a2e332020-08-11 01:26:32 -040076 width: 100%;
77 margin-bottom: 10px;
78}
79
Hao Zhu33b865f2020-08-18 02:10:43 -040080.lightable-classic-2 td {
81 padding-left: 5px;
82 padding-right: 5px;
83}
84
85.lightable-classic-2 th {
86 padding-left: 5px;
87 padding-right: 5px;
88}
89
Hao Zhu8b16a6c2020-08-18 16:59:20 -040090.lightable-classic-2 tbody tr:last-child td {
91 border-bottom: 3px double #111111;
92}
93
Hao Zhud8a2e332020-08-11 01:26:32 -040094.lightable-classic-2 thead tr:last-child th {
95 border-bottom: 1px solid #111111;
96}
97
98.lightable-classic-2.lightable-hover tbody tr:hover {
Hao Zhu33b865f2020-08-18 02:10:43 -040099 background-color: #F9EEC1;
Hao Zhud8a2e332020-08-11 01:26:32 -0400100}
101
Hao Zhu8b16a6c2020-08-18 16:59:20 -0400102.lightable-classic-2.lightable-striped tbody tr:nth-child(even) {
Hao Zhud8a2e332020-08-11 01:26:32 -0400103 background-color: #f5f5f5;
104}
105
Hao Zhuad4ea392020-08-10 01:24:50 -0400106.lightable-material {
107 min-width: 100%;
108 white-space: nowrap;
109 table-layout: fixed;
110 font-family: Roboto, sans-serif;
111 border: 1px solid #EEE;
112 border-collapse: collapse;
Hao Zhud7762a42020-08-10 09:05:47 -0400113 margin-bottom: 10px;
Hao Zhuad4ea392020-08-10 01:24:50 -0400114}
115
116.lightable-material th {
Hao Zhu9bf19982020-08-11 00:50:33 -0400117 height: 56px;
118 padding-left: 16px;
119 padding-right: 16px;
Hao Zhuad4ea392020-08-10 01:24:50 -0400120}
121
122.lightable-material td {
Hao Zhu9bf19982020-08-11 00:50:33 -0400123 height: 52px;
124 padding-left: 16px;
125 padding-right: 16px;
Hao Zhuad4ea392020-08-10 01:24:50 -0400126 border-top: 1px solid #eeeeee;
127}
128
Hao Zhu81c335c2020-08-10 09:20:41 -0400129.lightable-material.lightable-hover tbody tr:hover {
Hao Zhuad4ea392020-08-10 01:24:50 -0400130 background-color: #f5f5f5;
131}
132
Hao Zhu8b16a6c2020-08-18 16:59:20 -0400133.lightable-material.lightable-striped tbody tr:nth-child(even) {
Hao Zhuad4ea392020-08-10 01:24:50 -0400134 background-color: #f5f5f5;
135}
136
Hao Zhu8b16a6c2020-08-18 16:59:20 -0400137.lightable-material.lightable-striped tbody td {
Hao Zhu81c335c2020-08-10 09:20:41 -0400138 border: 0;
Hao Zhuad4ea392020-08-10 01:24:50 -0400139}
140
141.lightable-material.lightable-striped thead tr:last-child th {
142 border-bottom: 1px solid #ddd;
143}
Hao Zhu9bf19982020-08-11 00:50:33 -0400144
145.lightable-material-dark {
146 min-width: 100%;
147 white-space: nowrap;
148 table-layout: fixed;
149 font-family: Roboto, sans-serif;
150 border: 1px solid #FFFFFF12;
151 border-collapse: collapse;
152 margin-bottom: 10px;
153 background-color: #363640;
154}
155
156.lightable-material-dark th {
157 height: 56px;
158 padding-left: 16px;
159 padding-right: 16px;
160 color: #FFFFFF60;
161}
162
163.lightable-material-dark td {
164 height: 52px;
165 padding-left: 16px;
166 padding-right: 16px;
167 color: #FFFFFF;
168 border-top: 1px solid #FFFFFF12;
169}
170
171.lightable-material-dark.lightable-hover tbody tr:hover {
172 background-color: #FFFFFF12;
173}
174
Hao Zhu8b16a6c2020-08-18 16:59:20 -0400175.lightable-material-dark.lightable-striped tbody tr:nth-child(even) {
Hao Zhu9bf19982020-08-11 00:50:33 -0400176 background-color: #FFFFFF12;
177}
178
Hao Zhu8b16a6c2020-08-18 16:59:20 -0400179.lightable-material-dark.lightable-striped tbody td {
Hao Zhu9bf19982020-08-11 00:50:33 -0400180 border: 0;
181}
182
183.lightable-material-dark.lightable-striped thead tr:last-child th {
184 border-bottom: 1px solid #FFFFFF12;
185}
Hao Zhu33b865f2020-08-18 02:10:43 -0400186
187.lightable-paper {
188 width: 100%;
189 margin-bottom: 10px;
190}
191
Hao Zhu8b16a6c2020-08-18 16:59:20 -0400192.lightable-paper thead tr:last-child th {
Hao Zhu33b865f2020-08-18 02:10:43 -0400193 color: #999;
194 vertical-align: bottom;
195 border-bottom: 1px solid #00000020;
196 line-height: 1.15em;
197 padding: 10px 5px;
198}
199
200.lightable-paper td {
201 vertical-align: middle;
202 border-bottom: 1px solid #00000010;
203 line-height: 1.15em;
204 padding: 7px 5px;
205}
206
207.lightable-paper.lightable-hover tbody tr:hover {
208 background-color: #F9EEC1;
209}
210
Hao Zhu8b16a6c2020-08-18 16:59:20 -0400211.lightable-paper.lightable-striped tbody tr:nth-child(even) {
Hao Zhu33b865f2020-08-18 02:10:43 -0400212 background-color: #00000008;
213}
214
Hao Zhu8b16a6c2020-08-18 16:59:20 -0400215.lightable-paper.lightable-striped tbody td {
Hao Zhu33b865f2020-08-18 02:10:43 -0400216 border: 0;
217}
Hao Zhu8b16a6c2020-08-18 16:59:20 -0400218