Files
data-over-audio/style.css
2024-05-09 02:32:21 -04:00

107 lines
1.8 KiB
CSS

body {
background-color: darkolivegreen;
}
.panels {
display: flex;
flex-wrap: wrap;
}
.panels > div {
border: 1px solid black;
background-color: darkslategray;
margin: 10px;
padding: 10px;
border-radius: 10px;
color: rgb(75, 185, 75);
}
.panels > div h2 {
background-color: gray;
border-bottom: 4px solid darkolivegreen;
color: black;
}
canvas {
background-color: black;
}
.progress-container {
width: 100%;
height: 20px;
border: 1px solid black;
background-color: darkslategray;
}
.progress-bar {
height: 100%;
min-height: 14px;
background-color: yellow;
position: relative;
z-index: 2;
left: 0;
/* transition: width 0.3s ease; */
}
.xprogress-container::after {
content: attr(data-percent) '%';
position: relative;
z-index: 2;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.raw-data {
background-color: rgb(41, 59, 10);
color: rgb(75, 185, 75);
width: 250px;
height: 300px;
font-size: x-small;
border: 1px solid grey;
overflow: auto;
font-family: monospace;
}
.bit-packet {
display: block;
color: yellow;
text-decoration: underline;
padding: 5px 0 5px 10px
}
.bit-wrong {
font-weight: bolder;
color: red;
}
.bit-unexpected {
color: green;
}
ol {
overflow: auto;
height: 75px;
background-color: rgb(41, 59, 10);
color: rgb(75, 185, 75);
border: 1px solid grey;
font-size: x-small;
font-family: monospace;
width: 250px;
}
#selected-samples {
width: 200px;
}
.low-high-set {
display: flex;
gap: 10px;
justify-content: space-between;
}
.low-high-set .max {
color: yellow;
font-style: bold;
}
.low-high-set .highest {
color: rgb(207, 207, 21);
}
.low-high-set .low {
min-width: 45px;
text-align: center;
}
.low-high-set .info {
min-width: 45px;
text-align: right;
}
.low-high-set .high {
min-width: 45px;
text-align: center;
}