|
1 | 1 | <!doctype html> |
2 | 2 | <html lang="pt-PT"> |
3 | 3 |
|
| 4 | +<style> |
| 5 | + /* Dark table styling */ |
| 6 | +.table { |
| 7 | + background: transparent; |
| 8 | + color: rgba(255,255,255,0.92); |
| 9 | +} |
| 10 | + |
| 11 | +.table thead { |
| 12 | + background: rgba(255,255,255,0.08); |
| 13 | +} |
| 14 | + |
| 15 | +.table thead th { |
| 16 | + color: rgba(255,255,255,0.9); |
| 17 | + border-color: rgba(255,255,255,0.15); |
| 18 | +} |
| 19 | + |
| 20 | +/* Dark table styling */ |
| 21 | +.table { |
| 22 | + background: transparent; |
| 23 | + color: rgba(255,255,255,0.92); |
| 24 | +} |
| 25 | + |
| 26 | +.table thead { |
| 27 | + background: rgba(255,255,255,0.08); |
| 28 | +} |
| 29 | + |
| 30 | +.table thead th { |
| 31 | + color: rgba(255,255,255,0.9); |
| 32 | + border-color: rgba(255,255,255,0.15); |
| 33 | +} |
| 34 | + |
| 35 | +.table tbody tr { |
| 36 | + background: rgba(255,255,255,0.04); |
| 37 | +} |
| 38 | + |
| 39 | +.table tbody tr:nth-child(even) { |
| 40 | + background: rgba(255,255,255,0.06); |
| 41 | +} |
| 42 | + |
| 43 | +.table td, |
| 44 | +.table th { |
| 45 | + border-color: rgba(255,255,255,0.12); |
| 46 | + color: rgba(255,255,255,0.92); |
| 47 | +} |
| 48 | + |
| 49 | +/* Hover effect */ |
| 50 | +.table.is-hoverable tbody tr:hover { |
| 51 | + background: rgba(197,164,193,0.18); |
| 52 | +} |
| 53 | + |
| 54 | +/* Make email/notes readable */ |
| 55 | +.table td { |
| 56 | + vertical-align: top; |
| 57 | +} |
| 58 | +.table tbody tr:nth-child(even) { |
| 59 | + background: rgba(255,255,255,0.06); |
| 60 | +} |
| 61 | + |
| 62 | +.table td, |
| 63 | +.table th { |
| 64 | + border-color: rgba(255,255,255,0.12); |
| 65 | + color: rgba(255,255,255,0.92); |
| 66 | +} |
| 67 | + |
| 68 | +/* Hover effect */ |
| 69 | +.table.is-hoverable tbody tr:hover { |
| 70 | + background: rgba(197,164,193,0.18); |
| 71 | +} |
| 72 | + |
| 73 | +/* Make email/notes readable */ |
| 74 | +.table td { |
| 75 | + vertical-align: top; |
| 76 | +} |
| 77 | +</style> |
| 78 | + |
4 | 79 | <head> |
5 | 80 | <meta charset="utf-8" /> |
6 | 81 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
|
0 commit comments