first commit

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-03-25 20:44:56 -04:00
commit 97cc85c49d
711 changed files with 109164 additions and 0 deletions
@@ -0,0 +1,34 @@
.priceList {
list-style-type: none;
padding: 0;
margin: 0;
}
.priceList li {
margin-bottom: 15px;
position: relative;
padding-left: 30px;
}
.priceList li:last-child {
margin-bottom: 0;
}
.priceList li i {
background-color: rgba(117, 127, 239, 0.1);
position: absolute;
top: 0px;
left: 0;
width: 22px;
height: 22px;
line-height: 22px;
border-radius: 100%;
text-align: center;
}
/* For RTL Style */
[dir="rtl"] .priceList li {
padding-left: 0;
padding-right: 30px;
}
[dir="rtl"] .priceList li i {
left: auto;
right: 0;
}