42 lines
519 B
CSS
42 lines
519 B
CSS
|
.army-member-view {
|
||
|
width: 90%;
|
||
|
height: 100vh;
|
||
|
padding: 5px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.army-member-view-container {
|
||
|
width: 90%;
|
||
|
min-width: 870px;
|
||
|
margin: auto
|
||
|
}
|
||
|
|
||
|
.return-button {
|
||
|
display: block;
|
||
|
width: auto;
|
||
|
}
|
||
|
|
||
|
.table {
|
||
|
overflow-wrap: break-word;
|
||
|
table-layout: fixed;
|
||
|
}
|
||
|
|
||
|
.table-container {
|
||
|
margin-top: 10px;
|
||
|
padding: 5px;
|
||
|
overflow-x: auto;
|
||
|
}
|
||
|
|
||
|
.table-head {
|
||
|
background: #222222;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
tbody {
|
||
|
background: rgba(255, 255, 255, 0.88);
|
||
|
}
|
||
|
|
||
|
.cell-outline {
|
||
|
outline: 1px solid #D4D4D4;
|
||
|
}
|