52 lines
837 B
CSS
52 lines
837 B
CSS
.chart {
|
|
height: 100%;
|
|
/* background-color: #00ee33; */
|
|
}
|
|
|
|
.gas {
|
|
position: relative;
|
|
}
|
|
|
|
.currentFlow {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
padding: 8px 22px;
|
|
border-radius: 2px;
|
|
letter-spacing: 2px;
|
|
box-shadow: inset 0 0 22px 0px hsla(0, 0%, 100%, 0.15);
|
|
line-height: 18px;
|
|
font-size: 18px;
|
|
text-align: center;
|
|
color: #12FFF5;
|
|
}
|
|
|
|
.headWidget {
|
|
position: absolute;
|
|
/* background: #00ee33; */
|
|
top: 20px;
|
|
right: 24px;
|
|
height: 32px;
|
|
width: 190px;
|
|
text-align: right;
|
|
}
|
|
|
|
.radioGroup * {
|
|
border: none !important;
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
.radioGroup *:focus-within {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.radioGroup *::before {
|
|
width: 0 !important;
|
|
}
|
|
|
|
.radioGroup_button_wrapper {
|
|
color: #fff !important;
|
|
background: #03233c !important;
|
|
}
|