opt-cc/static/src/app/army/army-member/army-member.component.css

61 lines
905 B
CSS
Raw Normal View History

:host {
display: flow-root;
height: 100%;
2018-08-04 10:41:02 +02:00
min-height: 100vh;
width: 100%;
margin-top: -23px;
padding-top: 23px;
padding-bottom: 23px;
background-image: url('../../../assets/bg.jpg');
background-size: cover;
background-attachment: fixed;
2018-08-04 10:35:26 +02:00
background-position: top;
background-repeat: no-repeat;
}
2017-10-07 18:06:30 +02:00
.army-member-view {
width: 90%;
2017-10-07 18:06:30 +02:00
height: 100vh;
padding: 5px;
margin: auto;
}
2017-10-07 18:06:30 +02:00
.army-member-view-container {
width: 90%;
min-width: 870px;
2018-02-26 09:04:27 +01:00
margin: auto
}
2017-05-18 18:01:00 +02:00
.return-button {
position: absolute;
2018-08-04 10:35:26 +02:00
padding-left: 5px;
2017-05-18 18:01:00 +02:00
}
.table {
overflow-wrap: break-word;
table-layout: fixed;
}
.table-container {
margin-top: 10px;
2017-10-05 20:15:14 +02:00
padding: 5px;
overflow-x: auto;
}
.table-head {
background: #222222;
color: white;
}
tbody {
background: rgba(255, 255, 255, 0.88);
}
.cell-outline {
2017-05-18 18:01:00 +02:00
outline: 1px solid #D4D4D4;
}
2018-07-20 22:33:53 +02:00
tr.cell-outline:hover {
background-color: #ffffff;
}