51 lines
851 B
CSS
51 lines
851 B
CSS
.myProfileChart {
|
|
position: relative;
|
|
}
|
|
.myProfileChart .content {
|
|
left: 0;
|
|
right: 0;
|
|
text-align: center;
|
|
top: 50%;
|
|
position: absolute;
|
|
pointer-events: none;
|
|
transform: translateY(-50%);
|
|
}
|
|
.myProfileChart .content h5 {
|
|
margin-top: 0;
|
|
margin-bottom: 5px;
|
|
font-size: 18px;
|
|
}
|
|
.myProfileChart .content p {
|
|
color: #5b5b98;
|
|
margin: 0;
|
|
}
|
|
|
|
.list {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style-type: none;
|
|
}
|
|
.list li {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.list li {
|
|
border-bottom: 1px solid #F7FAFF;
|
|
margin-bottom: 20px;
|
|
padding-bottom: 20px;
|
|
}
|
|
.list li:last-child {
|
|
border-bottom: none;
|
|
margin-bottom: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
/* For dark mode */
|
|
[class="dark"] .list li {
|
|
border-bottom: 1px solid var(--borderColor);
|
|
}
|
|
[class="dark"] .list li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|