50 lines
636 B
CSS
50 lines
636 B
CSS
.overview {
|
|
position: fixed;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
bottom: 20px;
|
|
width: 100%;
|
|
padding-left: 50px;
|
|
padding-top: 70px;
|
|
margin-left: 10px;
|
|
height: 100vh;
|
|
}
|
|
|
|
:host /deep/ mfDefaultSorter > a {
|
|
color: white;
|
|
}
|
|
|
|
.table {
|
|
overflow-wrap: break-word;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
.scoreboard-table-container {
|
|
min-width: 920px;
|
|
max-width: 920px;
|
|
margin-left: 5%
|
|
}
|
|
|
|
.table-container {
|
|
margin-top: 10px;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.table-head {
|
|
background: #222222;
|
|
color: white;
|
|
}
|
|
|
|
.cell-outline {
|
|
outline: 1px solid #D4D4D4;
|
|
}
|
|
|
|
.text-opfor {
|
|
color: firebrick;
|
|
}
|
|
|
|
.text-blufor {
|
|
color: blue;
|
|
}
|
|
|