88 lines
1.2 KiB
CSS
88 lines
1.2 KiB
CSS
.chart {
|
|
height: 100%;
|
|
}
|
|
|
|
.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;
|
|
top: 22px;
|
|
right: 24px;
|
|
height: 32px;
|
|
width: 400px;
|
|
/* background: #12fff5; */
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.switchLabel {
|
|
color: white;
|
|
margin-left: 6px;
|
|
}
|
|
|
|
.legend:last-child {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.legend > span {
|
|
display: inline-block;
|
|
color: #dff1fe;
|
|
font-size: 14px;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.legend > span:first-child {
|
|
width: 12px;
|
|
height: 12px;
|
|
margin-right: 4px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.gasIcon {
|
|
background: #12fff5;
|
|
}
|
|
|
|
.gas2Icon {
|
|
background: #2760ff;
|
|
}
|
|
|
|
.radioGroup {
|
|
user-select: none;
|
|
}
|
|
|
|
.radioGroup * {
|
|
border: none !important;
|
|
border-radius: 6px !important;
|
|
}
|
|
|
|
.radioGroup *:focus-within {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.radioGroup *::before {
|
|
width: 0 !important;
|
|
}
|
|
|
|
.radioGroup_button_wrapper {
|
|
color: #fff !important;
|
|
background: #03233c !important;
|
|
}
|