92 lines
1.3 KiB
Plaintext
92 lines
1.3 KiB
Plaintext
.GoodRateChart {
|
|
height: 1px;
|
|
flex: 1;
|
|
padding-top: 8px;
|
|
// background: #ae27276a;
|
|
|
|
.titleBar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background: #0003;
|
|
color: white;
|
|
|
|
h2 {
|
|
margin: 0;
|
|
font-size: 20px;
|
|
line-height: 32px;
|
|
letter-spacing: 1.2px;
|
|
color: #52fff8;
|
|
}
|
|
|
|
.legend {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
* {
|
|
font-size: 14px;
|
|
line-height: 14px;
|
|
color: #dff1fe;
|
|
}
|
|
|
|
ul {
|
|
display: flex;
|
|
margin: 0;
|
|
margin-left: 8px;
|
|
padding: 0;
|
|
list-style: none;
|
|
align-items: center;
|
|
|
|
li {
|
|
position: relative;
|
|
margin: 4px;
|
|
padding-left: 16px;
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 2px;
|
|
top: 2px;
|
|
display: inline-block;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
&:first-child::before {
|
|
background-color: #ffd160;
|
|
}
|
|
|
|
&:nth-child(2)::before {
|
|
background-color: #12fff5;
|
|
}
|
|
|
|
&:nth-child(3)::before {
|
|
background-color: #2760ff;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.radioGroup {
|
|
* {
|
|
border: none !important;
|
|
border-radius: 0 !important;
|
|
|
|
&:focus-within {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
&::before {
|
|
width: 0 !important;
|
|
}
|
|
}
|
|
|
|
.radioGroup_button_wrapper {
|
|
color: #fff !important;
|
|
background: #03233c !important;
|
|
}
|
|
}
|