-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
160 lines (138 loc) · 3.27 KB
/
styles.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
* {
font-family: 'Inter', sans-serif;
}
#loading {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
z-index: 100;
width: 100%;
height: 100%;
background-color: white;
}
.loader {
border: 16px solid #f3f3f3;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
z-index: 101;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
#outputarea {
padding: 2px;
margin-left: 2px;
margin-right: 2px;
width: 100vw;
}
table.pvtTable {
font-family:arial;
font-size: 8pt;
text-align: left;
border-collapse: collapse;
}
table.pvtTable tr th, table.pvtTable tr th {
background-color: #e6EEEE;
border: 1px solid #CDCDCD;
font-size: 8pt;
padding: 5px;
}
table.pvtTable .pvtColLabel {text-align: center;}
table.pvtTable .pvtTotalLabel {text-align: right;}
table.pvtTable tr td {
color: #3D3D3D;
padding: 5px;
background-color: #FFF;
border: 1px solid #CDCDCD;
vertical-align: top;
text-align: right;
}
.pvtTotal, .pvtGrandTotal { font-weight: bold; }
.pvtVals { text-align: center;}
.pvtAggregator { margin-bottom: 5px ;}
.pvtAxisContainer, .pvtVals {
border: 1px solid gray;
background: #EEE;
padding: 5px;
}
.pvtAxisContainer li {
padding: 8px 6px;
list-style-type: none;
cursor:move;
}
.pvtAxisContainer li.pvtPlaceholder {
-webkit-border-radius: 5px;
padding: 3px 15px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px dashed #aaa;
}
.pvtAxisContainer li span.pvtAttr {
background: #F3F3F3;
border: 1px solid #DEDEDE;
padding: 2px 3px;
white-space: 'nowrap';
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.pvtTriangle {
cursor:pointer;
color: grey;
}
.pvtHorizList li { display: inline; }
.pvtVertList { vertical-align: top; }
.pvtFilteredAttribute { font-style: italic ; border-radius: 4px; background-color: #CDCDCD; }
.pvtFilterBox {
z-index: 100;
min-height: 5rem;
width: 280px;
bottom: 25px;
top: auto !important;
overflow-y: scroll;
border: 1px solid gray;
background-color: #fff;
border-radius: 10px;
box-shadow: 10px 5px -5px rgba(0, 0, 0, .5);
padding: 20px;
margin: 5px;
position: fixed;
text-align: center;
background-color: rgba(255, 255, 255, .15);
backdrop-filter: blur(5px);
}
.pvtFilterBox h4, .pvtFilterBox p, .pvtFilterBox button { margin: 5px; padding: 5px; border-radius: 5px;}
.pvtCheckContainer{
text-align: left;
overflow: scroll;
width: 100%;
max-height: 200px;
}
.pvtCheckContainer p{ margin: 5px; }
.pvtRendererArea {
display: flex;
justify-content: center;
align-items: center;
margin-right: 2px;
}
.c3-axis-x-label, .c3-axis-y-label {
font-size: 1rem;
font-weight: 600;
}
.c3-legend-item .c3-legend-item-tile {
font-size: 10px;
}