| 1 |
.DUI-panel { |
| 2 |
background-color: white; |
| 3 |
margin-right: 10px; |
| 4 |
margin-bottom: 10px; |
| 5 |
border: 1px solid #d2d2d2; |
| 6 |
} |
| 7 |
@media only screen and (min-width: 1400px) { |
| 8 |
.DUI-panel--TOP10 { |
| 9 |
max-width:49%; |
| 10 |
width:49%; |
| 11 |
float:left; |
| 12 |
} |
| 13 |
} |
| 14 |
|
| 15 |
@media only screen and (min-width: 1024px) { |
| 16 |
.show-desktop { display: block; } |
| 17 |
} |
| 18 |
@media only screen and (max-width: 1023px) { |
| 19 |
.show-desktop { display: none; } |
| 20 |
} |
| 21 |
|
| 22 |
.DUI-panel__headline { |
| 23 |
padding: 6px 10px 6px 10px; |
| 24 |
border-bottom: 1px solid #e0e0e0; |
| 25 |
font-weight: bold; |
| 26 |
} |
| 27 |
.DUI-panel__headline-actions { |
| 28 |
float: right; |
| 29 |
} |
| 30 |
.DUI-panel__content { |
| 31 |
padding: 6px; |
| 32 |
} |
| 33 |
.DUI-panel__content--title { |
| 34 |
padding: 20px; |
| 35 |
} |
| 36 |
|
| 37 |
.DUI-panel--error { |
| 38 |
border-color: #e0b4b4; |
| 39 |
background-color: red; |
| 40 |
color: white; |
| 41 |
} |
| 42 |
.DUI-panel--error a { |
| 43 |
color: white; |
| 44 |
} |
| 45 |
|
| 46 |
.DUI-table { |
| 47 |
_border: 1px solid #aaa; |
| 48 |
font-size: 1.0em; |
| 49 |
color: black; |
| 50 |
} |
| 51 |
.DUI-table td { overflow-wrap: anywhere; } |
| 52 |
.DUI-table thead th { border-bottom: 1px solid #eee; white-space: nowrap; } |
| 53 |
.DUI-table tbody tr:nth-child(odd) { background-color: white; } |
| 54 |
.DUI-table tbody tr:nth-child(even) { background-color: white; } |
| 55 |
.DUI-table tbody tr:hover { background-color: #eee; } |
| 56 |
.DUI-table__col--number { text-align: right; white-space: nowrap; } |
| 57 |
.DUI-table__col--grow { width: 100%; } |
| 58 |
|
| 59 |
/* Stacked Bar Chart */ |
| 60 |
|
| 61 |
.stackedbarchart { |
| 62 |
display: flex; |
| 63 |
width: 600px; |
| 64 |
text-align: center; |
| 65 |
} |
| 66 |
.stackedbarchart__bar { |
| 67 |
display: flex; |
| 68 |
align-items: center; |
| 69 |
justify-content: center; |
| 70 |
font-weight: bold; |
| 71 |
word-break: break-all; |
| 72 |
overflow: hidden; |
| 73 |
padding: 5px; |
| 74 |
} |
| 75 |
.stackedbarchart__bar:nth-child(1) { background-color: rgba(255, 180, 50, .75); } |
| 76 |
.stackedbarchart__bar:nth-child(2) { background-color: rgba(255, 220, 90, .75); } |
| 77 |
.stackedbarchart__bar:nth-child(3) { background-color: rgba(100, 210, 80, .75); } |
| 78 |
.stackedbarchart__bar:nth-child(4) { background-color: rgba(90, 165, 255, .75); } |
| 79 |
.stackedbarchart__bar:nth-child(5) { background-color: hsla(0, 0%, 71%, .75); } |
| 80 |
.stackedbarchart__bar:nth-child(6) { background-color: rgba(170, 90, 240, .75); } |
| 81 |
.stackedbarchart__bar:nth-child(7) { background-color: hsla(0, 0%, 43%, .75); } |
| 82 |
.stackedbarchart__bar:nth-child(8) { background-color: hsla(40, 26%, 55%, .75); } |
| 83 |
.stackedbarchart__bar:nth-child(9) { background-color: rgba(240, 50, 50, .75); } |
| 84 |
|