2021-08-18 00:01:11 +02:00
|
|
|
@import url('./transitions.css');
|
|
|
|
|
|
|
|
.page {
|
|
|
|
width: 100%;
|
|
|
|
height: calc(100% - 64px);
|
|
|
|
max-height: calc(100% - 64px);
|
|
|
|
}
|
|
|
|
.page.streaming {
|
|
|
|
height: calc(100% - 64px - 165px);
|
|
|
|
max-height: calc(100% - 64px - 165px);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* width */
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 8px;
|
|
|
|
}
|
|
|
|
/* Track */
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background-color: rgba(0,0,0,0);
|
|
|
|
}
|
|
|
|
/* Handle */
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: #855620;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
/* Handle on hover */
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
background: #704922;
|
|
|
|
}
|
|
|
|
|
2021-08-21 01:29:10 +02:00
|
|
|
.no-scroll::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2021-08-18 00:01:11 +02:00
|
|
|
|
|
|
|
.tracksTable {
|
|
|
|
border-collapse: collapse;
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid #474747;
|
|
|
|
}
|
|
|
|
.tracksTable tr:nth-child(even) {
|
|
|
|
background-color: #2e2e2e;
|
|
|
|
}
|
|
|
|
.tracksTable tr {
|
|
|
|
background-color: #373838;
|
|
|
|
}
|
|
|
|
.tracksTable tr:hover {
|
|
|
|
background-color: #474747;
|
|
|
|
}
|
|
|
|
.tracksTable td {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
.tracksTable th {
|
|
|
|
padding: 4px;
|
|
|
|
font-size: 0.75rem;
|
2021-08-21 01:29:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.arrow-down {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-left: 6px solid transparent;
|
|
|
|
border-right: 6px solid transparent;
|
|
|
|
border-top: 6px solid white;
|
2021-08-22 17:46:04 +02:00
|
|
|
}
|
2021-09-01 20:47:18 +02:00
|
|
|
.triangle-right {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-left: 8px solid transparent;
|
|
|
|
border-bottom: 8px solid transparent;
|
|
|
|
border-top: 8px solid rgb(34,127,35);
|
|
|
|
border-right: 8px solid rgb(34,127,35);
|
|
|
|
}
|
2021-08-22 17:46:04 +02:00
|
|
|
|
|
|
|
.icon-text {
|
|
|
|
font-size: 1.1rem;
|
2021-08-25 03:24:40 +02:00
|
|
|
}
|
|
|
|
|
2021-08-26 16:47:51 +02:00
|
|
|
#page-wrapper {
|
2021-08-25 03:24:40 +02:00
|
|
|
background-image: linear-gradient(to right bottom, #2e2e2e, #303030, #313131, #333333, #353535, #343434, #323232, #313131, #2c2c2c, #282828, #232323, #1f1f1f);
|
2021-08-26 16:47:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.box-shadow-md {
|
|
|
|
box-shadow: 2px 8px 6px #111111aa;
|
|
|
|
}
|
|
|
|
|
2021-08-27 01:32:05 +02:00
|
|
|
.box-shadow-lg-up {
|
|
|
|
box-shadow: 0px -12px 8px #111111ee;
|
|
|
|
}
|
|
|
|
|
2021-08-26 16:47:51 +02:00
|
|
|
.box-shadow-xl {
|
|
|
|
box-shadow: 2px 14px 8px #111111aa;
|
2021-08-18 00:01:11 +02:00
|
|
|
}
|