mirror of
https://github.com/google/bumble.git
synced 2026-04-16 00:25:31 +00:00
76 lines
1.2 KiB
CSS
76 lines
1.2 KiB
CSS
body, h1, h2, h3, h4, h5, h6 {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
#controlsDiv {
|
|
margin: 6px;
|
|
}
|
|
|
|
#connectionText {
|
|
background-color: rgb(239, 89, 75);
|
|
border: none;
|
|
border-radius: 4px;
|
|
padding: 8px;
|
|
display: inline-block;
|
|
margin: 4px;
|
|
}
|
|
|
|
#startButton {
|
|
padding: 4px;
|
|
margin: 6px;
|
|
}
|
|
|
|
#fftCanvas {
|
|
border-radius: 16px;
|
|
margin: 6px;
|
|
}
|
|
|
|
#bandwidthCanvas {
|
|
border: grey;
|
|
border-style: solid;
|
|
border-radius: 8px;
|
|
margin: 6px;
|
|
}
|
|
|
|
#streamStateText {
|
|
background-color: rgb(93, 165, 93);
|
|
border: none;
|
|
border-radius: 8px;
|
|
padding: 10px 20px;
|
|
display: inline-block;
|
|
margin: 6px;
|
|
}
|
|
|
|
#connectionStateText {
|
|
background-color: rgb(112, 146, 206);
|
|
border: none;
|
|
border-radius: 8px;
|
|
padding: 10px 20px;
|
|
display: inline-block;
|
|
margin: 6px;
|
|
}
|
|
|
|
#propertiesTable {
|
|
border: grey;
|
|
border-style: solid;
|
|
border-radius: 4px;
|
|
padding: 4px;
|
|
margin: 6px;
|
|
margin-left: 0;
|
|
}
|
|
|
|
th, td {
|
|
padding-left: 6px;
|
|
padding-right: 6px;
|
|
}
|
|
|
|
.properties td:nth-child(even) {
|
|
background-color: #d6eeee;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.properties td:nth-child(odd) {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.properties tr td:nth-child(2) { width: 150px; } |