wip: big refactor
This commit is contained in:
55
style.css
55
style.css
@@ -4,19 +4,53 @@ body {
|
||||
.panels {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
.panels > div {
|
||||
border: 1px solid black;
|
||||
background-color: darkslategray;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
padding-top: 0;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
border-radius: 10px;
|
||||
color: rgb(75, 185, 75);
|
||||
color: rgb(163, 197, 163);
|
||||
max-height: 200px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.panels > div h2 {
|
||||
.panels > div.chart {
|
||||
max-height: unset;
|
||||
overflow: unset;
|
||||
}
|
||||
.panels > div.chart > div {
|
||||
overflow: unset;
|
||||
height: unset;
|
||||
}
|
||||
.panels > div > h2 {
|
||||
margin-top: 0;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
background-color: gray;
|
||||
border-bottom: 4px solid darkolivegreen;
|
||||
color: black;
|
||||
font-size: small;
|
||||
}
|
||||
.panels > div > div {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
font-size: small;
|
||||
height: 175px;
|
||||
|
||||
overflow: auto;
|
||||
}
|
||||
.panels > div > div h4 {
|
||||
font-size: small;
|
||||
background-color: gray;
|
||||
border-bottom: 1px solid rgb(58, 58, 58);
|
||||
color: rgb(58, 58, 58);
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
canvas {
|
||||
background-color: black;
|
||||
@@ -34,6 +68,7 @@ canvas {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
left: 0;
|
||||
width: 0;
|
||||
/* transition: width 0.3s ease; */
|
||||
}
|
||||
.xprogress-container::after {
|
||||
@@ -48,7 +83,17 @@ canvas {
|
||||
background-color: rgb(41, 59, 10);
|
||||
color: rgb(75, 185, 75);
|
||||
width: 250px;
|
||||
height: 300px;
|
||||
min-height: 150px;
|
||||
font-size: x-small;
|
||||
border: 1px solid grey;
|
||||
overflow: auto;
|
||||
font-family: monospace;
|
||||
}
|
||||
.raw-data-small {
|
||||
background-color: rgb(41, 59, 10);
|
||||
color: rgb(75, 185, 75);
|
||||
width: 250px;
|
||||
min-height: 100px;
|
||||
font-size: x-small;
|
||||
border: 1px solid grey;
|
||||
overflow: auto;
|
||||
@@ -68,8 +113,8 @@ canvas {
|
||||
color: green;
|
||||
}
|
||||
ol {
|
||||
overflow: auto;
|
||||
height: 75px;
|
||||
/* overflow: auto; */
|
||||
/* height: 75px; */
|
||||
background-color: rgb(41, 59, 10);
|
||||
color: rgb(75, 185, 75);
|
||||
border: 1px solid grey;
|
||||
|
||||
Reference in New Issue
Block a user