first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-10-14 22:02:57 -04:00
commit 5f95d857d4
783 changed files with 112323 additions and 0 deletions
@@ -0,0 +1,37 @@
.icon {
color: var(--primaryColor);
font-size: 30px;
}
.priceList {
list-style-type: none;
padding: 0;
margin: 0;
}
.priceList li {
margin-bottom: 15px;
position: relative;
padding-left: 16px;
}
.priceList li:last-child {
margin-bottom: 0;
}
.priceList li:before {
content: '';
background-color: var(--primaryColor);
position: absolute;
top: 4px;
left: 0;
width: 10px;
height: 10px;
border-radius: 100%;
}
/* For RTL Style */
[dir="rtl"] .priceList li {
padding-left: 0;
padding-right: 16px;
}
[dir="rtl"] .priceList li:before {
left: auto;
right: 0;
}