btrtracks/public/index.css

104 lines
1.6 KiB
CSS

* {
margin: 0;
padding: 0;
}
body {
background-color: #0d171e;
font-family: sans-serif;
color: #fff;
}
.container {
display: flex;
flex-direction: column;
flex-grow: 1;
min-height: 0;
height: 100vh;
}
#search {
color: #fff;
background-color: #152b3a;
border: 0;
padding: 10px;
font-size: 2.5em;
border-left: 10px solid #112330;
display: block;
}
.table-container {
flex-grow: 1;
overflow: auto;
overflow-x: hidden;
}
.player {
display: flex;
min-height: max-content;
flex-direction: column;
bottom: 0;
width: 100%;
background-color: #152b3a;
}
.player audio {
width: 100%;
}
.player #playing {
padding: 10px;
}
table {
table-layout: fixed;
border-spacing: 0;
border-collapse: collapse;
}
th.small {
width: 5%;
}
td {
cursor: pointer;
}
td,th {
padding: 5px;
}
tr:nth-child(even) {
background-color: #0f1b23;
}
.pages {
display: flex;
flex-direction: row;
min-height: max-content;
}
.pages .paging {
flex: 1;
text-align: center;
font-size: 3em;
}
.paging.btn {
background-color: #112635;
cursor: pointer;
}
.paging.bg {
background-color: #0e202c;
}
@media only screen and (max-width: 600px) {
tr td:nth-child(1), th:nth-child(1) {
display: none;
}
tr td:nth-child(3), th:nth-child(3) {
display: none;
}
tr td:nth-child(4), th:nth-child(4) {
display: none;
}
tr td:nth-child(5), th:nth-child(5) {
display: none;
}
tr td:nth-child(6), th:nth-child(6) {
display: none;
}
.pages .paging {
flex: 1;
text-align: center;
font-size: 1.3em;
}
.allowance {
margin-bottom: 100px !important;
}
}