-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
163 lines (144 loc) · 2.27 KB
/
style.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
*
{
/* color:darkred; */
vertical-align:middle;
/* background-color: #4C565E; */
/* color:#B7BFC7; */
font-family:Arial, sans serif;
}
body
{
font-size: 0.9em;
margin: 0;
}
table
{
font-size: 0.9em;
}
table.dataTable thead th, table.dataTable thead td
{
padding: 6px 14px 6px 2px;
}
table.dataTable thead th div.DataTables_sort_wrapper span
{
right: -14px /* must be equal to the right padding of table.dataTable thead th, table.dataTable thead td */
}
table.dataTable tbody td
{
padding: 2px 4px 2px 4px;
white-space: nowrap;
}
table.dataTable tbody td.number
{
text-align: right;
padding-right: 8px;
white-space: nowrap;
}
.filters
{
margin: 4px;
}
.bigtable
{
padding-right:18px;
}
/* Colors for the prices */
.P1
{
background-color: #C8EEEE;
}
.P2
{
background-color: #F6DCF6;
}
.even .P1
{
background-color: #D4F2F2;
}
.even .P2
{
background-color: #FAE8FA;
}
/* Colors for the CPU & RAM sliders handle */
.ui-slider-horizontal .ui-slider-handle
{
background-color:#BBBBBB;
border-color:#9B9B9B;
}
.ui-widget-header
{
background-color:#D7D7D7;
}
/* Tooltip */
.tooltip
{
position: relative;
display: inline-block;
border-bottom: 1px solid blue;
width:100%;
}
.tooltip .tooltiptext
{
visibility: hidden;
width:400px;
background-color: black;
color: #fff;
text-align: left;
/* border-radius: 6px; */
padding: 10px 10px;
word-wrap: wrap;
/*overflow-wrap: normal;*/
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext
{
visibility: visible;
}
input , select
{
font-size:inherit;
}
#exports
{
display:Inline-block;
padding: 0px 10px;
}
#exports div.dt-buttons::before
{
content: "Export data: ";
}
#exports div.dt-buttons
{
display:Inline-block;
float:none;
}
#pagesize /* div.dataTables_length*/
{
display:Inline-block;
padding: 4px 10px;
}
#pager
{
display:Inline-block;
padding: 0px 10px;
}
#info
{
display:Inline-block;
padding: 0px 10px;
}
#info div.dataTables_info
{
padding-top:0px;
}
#search
{
display:Inline-block;
padding: 0px 10px;
}
div.footnotes
{
padding: 5px 15px;
}