61 lines
1.1 KiB
CSS
61 lines
1.1 KiB
CSS
.infoList {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid #F7FAFF;
|
|
margin-bottom: 13px;
|
|
padding-bottom: 13px;
|
|
position: relative;
|
|
padding-left: 20px;
|
|
}
|
|
.infoList::before {
|
|
content: '';
|
|
background: #F765A3;
|
|
box-shadow: 0px 2.98686px 13.4409px rgba(126, 172, 235, 0.25);
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 15px;
|
|
}
|
|
.infoList:last-child {
|
|
border-bottom: none;
|
|
padding-bottom: 0;
|
|
}
|
|
.infoList p {
|
|
font-size: 13px;
|
|
margin: 0;
|
|
}
|
|
.infoList .rightContent {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.infoList h5 {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
color: #260944;
|
|
}
|
|
.infoList .rightContent i {
|
|
position: relative;
|
|
top: 2px;
|
|
}
|
|
|
|
/* For RTL Style */
|
|
[dir="rtl"] .infoList {
|
|
padding-left: 0;
|
|
padding-right: 20px;
|
|
}
|
|
[dir="rtl"] .infoList::before {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
/* For dark mode */
|
|
[class="dark"] .infoList {
|
|
border-bottom: 1px solid var(--borderColor);
|
|
}
|
|
[class="dark"] .infoList:last-child {
|
|
border-bottom: none;
|
|
} |