opt-cc/static/src/app/statistic/war-detail/war-detail.component.css

123 lines
1.9 KiB
CSS
Raw Normal View History

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%;
}
.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
.text-opfor {
color: firebrick;
2017-07-08 21:56:11 +02:00
}
2017-09-13 11:49:34 +02:00
.text-blufor {
color: blue;
2017-07-10 20:51:15 +02:00
}
2017-10-28 20:25:58 +02:00
/* ########### TABS ########### */
:host /deep/ .nav-tabs {
2017-11-03 12:51:58 +01:00
padding-left: 35% !important;
2017-10-28 20:25:58 +02:00
}
:host /deep/ .nav-link {
background: #4b4b4b;
color: white;
}
:host /deep/ .nav-link:hover {
2017-10-28 22:50:54 +02:00
background: #286090;
2017-10-28 20:25:58 +02:00
color: #000;
}
2017-11-03 12:51:58 +01:00
:host /deep/ .nav-tabs > li.active > a {
2017-10-28 20:25:58 +02:00
background: #222222;
color: white;
}
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 ######## */
.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
.dropdown-menu > li > a {
cursor: pointer;
}