2017-10-07 09:38:02 +02:00
|
|
|
.vertical-spacer {
|
2017-10-28 20:25:58 +02:00
|
|
|
height: 205px;
|
2017-10-07 09:38:02 +02:00
|
|
|
float: left;
|
|
|
|
width: 4%;
|
|
|
|
}
|
|
|
|
|
2017-10-28 12:58:40 +02:00
|
|
|
.head-field {
|
|
|
|
font-size: 24px;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2017-10-07 09:38:02 +02:00
|
|
|
@media screen and (min-width: 1500px) {
|
|
|
|
.vertical-spacer {
|
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 2000px) {
|
|
|
|
.vertical-spacer {
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-08 21:56:11 +02:00
|
|
|
.overview {
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
2017-09-12 15:02:35 +02:00
|
|
|
border-left: thin solid lightgrey;
|
2017-07-08 21:56:11 +02:00
|
|
|
bottom: 20px;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
2017-09-13 11:49:34 +02:00
|
|
|
.player-name {
|
|
|
|
font-weight: bold;
|
2017-07-08 21:56:11 +02:00
|
|
|
}
|
|
|
|
|
2017-09-13 11:49:34 +02:00
|
|
|
/* ########### DATATABLE ########### */
|
2017-07-08 21:56:11 +02:00
|
|
|
|
2017-09-13 11:49:34 +02:00
|
|
|
:host /deep/ .datatable-header {
|
2017-07-08 21:56:11 +02:00
|
|
|
background: #222222;
|
2017-09-13 11:49:34 +02:00
|
|
|
font-weight: 700;
|
|
|
|
border-radius: 10px 10px 0 0;
|
2017-07-08 21:56:11 +02:00
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2017-09-13 11:49:34 +02:00
|
|
|
:host /deep/ span.datatable-header-cell-label, :host /deep/ div.datatable-body-cell-label {
|
|
|
|
padding-left: 8px;
|
2017-07-08 21:56:11 +02:00
|
|
|
}
|
|
|
|
|
2017-09-13 11:49:34 +02:00
|
|
|
:host /deep/ .ngx-datatable .datatable-header {
|
|
|
|
/*vertical center alignment*/
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
2017-07-08 21:56:11 +02:00
|
|
|
}
|
|
|
|
|
2017-09-13 11:49:34 +02:00
|
|
|
:host /deep/ .ngx-datatable .datatable-body .datatable-body-row > div {
|
|
|
|
/*vertical alignment*/
|
|
|
|
position: relative;
|
|
|
|
top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
:host /deep/ .datatable-body-row {
|
|
|
|
color: #222222;
|
|
|
|
border-bottom: 1px solid grey;
|
2017-10-02 20:03:42 +02:00
|
|
|
cursor: pointer;
|
2017-09-13 11:49:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
:host /deep/ .datatable-body-row:hover {
|
|
|
|
background-color: #f7f7f7;
|
2017-07-08 21:56:11 +02:00
|
|
|
}
|
|
|
|
|
2017-11-03 12:51:58 +01:00
|
|
|
/* ########### CHART-TAB ######## */
|
|
|
|
|
2017-11-04 20:46:05 +01:00
|
|
|
.btn-dark {
|
|
|
|
background: #4b4b4b;
|
|
|
|
color: #f5f5f5;
|
|
|
|
border-color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-dark:hover {
|
|
|
|
background: #afafaf;
|
|
|
|
color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-dark.active {
|
|
|
|
background: #222222;
|
|
|
|
}
|
|
|
|
|
2017-11-03 12:51:58 +01:00
|
|
|
.chart-container {
|
2017-11-03 14:43:04 +01:00
|
|
|
width: 95%;
|
2017-11-03 12:51:58 +01:00
|
|
|
margin: 2%;
|
|
|
|
min-width: 900px;
|
|
|
|
height: 600px;
|
|
|
|
padding: 15px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chart-select-group {
|
|
|
|
width: 50%;
|
|
|
|
margin: auto;
|
|
|
|
position: inherit;
|
|
|
|
display: block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2017-11-03 14:43:04 +01:00
|
|
|
|
2017-11-04 20:46:05 +01:00
|
|
|
/*.dropdown-menu > li > a {*/
|
|
|
|
/*cursor: pointer;*/
|
|
|
|
/*}*/
|