fix(modelsofproduction): render graphs
This commit is contained in:
parent
7989ba0033
commit
69c49b72b8
5 changed files with 88 additions and 47 deletions
|
|
@ -27,7 +27,7 @@
|
|||
appearance: none;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: black;
|
||||
background: var(--text);
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
transform: translateY(-50%);
|
||||
|
|
@ -36,26 +36,29 @@
|
|||
|
||||
.slider input::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
width: 2px;
|
||||
height: 15px;
|
||||
background: black;
|
||||
cursor: col-resize;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
background: var(--text);
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.slider input::-moz-range-thumb {
|
||||
width: 2px;
|
||||
height: 15px;
|
||||
background: black;
|
||||
cursor: col-resize;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
background: var(--text);
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.slider input::-webkit-slider-runnable-track,
|
||||
.slider input::-moz-range-track {
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: black;
|
||||
background: var(--text);
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
|
@ -64,6 +67,10 @@
|
|||
justify-content: center;
|
||||
}
|
||||
|
||||
.sliders li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.romer-table-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
|
@ -79,7 +86,7 @@
|
|||
|
||||
#romer-table th,
|
||||
#romer-table td {
|
||||
border: 1px solid black;
|
||||
border: 1px solid var(--border);
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue