-
Notifications
You must be signed in to change notification settings - Fork 6
/
MMM-FlightsAbove.css
90 lines (76 loc) · 2.42 KB
/
MMM-FlightsAbove.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* ---------------------------------------------------------
Module: MMM-FlightsAbove
File: MMM-FlightsAbove.css
Author: E:V:A
URL: https://github.com/E3V3A/MMM-FlightsAbove/
* ---------------------------------------------------------
*/
.body {
background-color:#FFF;
}
/* Theme the Tabulator element */
#flightsabove {
/* The MAX table height is hardcoded in MMM-FlightsAbove.js */
width: 100%; /* 600px */
font-family: sans-serif;
font-size: 12px;
background-color: #000;
border: none; /*border: 1px solid #333;*/
/*border-radius: 10px;*/
}
/*-----------------------------------
* Theme for special flights (rows)
*----------------------------------- */
/* For airport IATA codes (takeoff-landing) */
#flightsabove .iata {
color: #0f0; /* Lime */
/*color: #f0f;*/ /* Fuchsia */
/*color: #0ff;*/ /* Aqua */
/*color: #33D9FF;*/ /* "bright-blue" */
}
/* For Military, EMS or UFO */
#flightsabove .ufo {
color: #f00; /* Red */
}
/* --------------------------------- */
#flightsabove .tabulator {
background-color: #000;
}
/* Theme the table Header */
#flightsabove .tabulator-header {
background-color: #000; /* 333 */
color: #ff0; /* yellow */
font-weight: 100; /* bold */
}
/* The Header & Row (right) Boders */
#flightsabove .tabulator-header .tabulator-col {
background-color: #000;
border-right: none; /* 1px solid #aaa */
}
.tabulator .tabulator-row .tabulator-cell {
border-right: none; /* 1px solid #888; */
}
/* Color the table rows */
#flightsabove .tabulator-tableHolder .tabulator-table .tabulator-row {
color: #fff;
background-color: #000; /* was 333 */
border-right: none;
}
/* Color even rows */
#flightsabove .tabulator-tableHolder .tabulator-table .tabulator-row:nth-child(even) {
/*background-color: #222;*/ /* change to 222 for even odd color scheme */
}
/* The Footer Legend */
.tabulator .tabulator-footer {
padding: none;
border-top: 1px solid #999;
background-color: #000;
text-align: left;
color: #ddd;
font-weight: normal;
font-size: 11px; /* "" */
}
/* Remove the sort arrows in table headers */
.tabulator .tabulator-header .tabulator-col[data-sortable=true] .tabulator-col-title {width: 100%;}
.tabulator-arrow {display: none;}