125 lines
2.5 KiB
CSS
125 lines
2.5 KiB
CSS
body, .lead {
|
|
font-family: "Yekan Bakh FaNum";
|
|
font-feature-settings: "kern" on, "liga" on, "dlig" on;
|
|
-moz-font-feature-settings: "kern" on, "liga" on, "dlig" on;
|
|
-webkit-font-feature-settings: "kern" on, "liga" on, "dlig" on;
|
|
-ms-font-feature-settings: "kern" on, "liga" on, "dlig" on;
|
|
-o-font-feature-settings: "kern" on, "liga" on, "dlig" on;
|
|
}
|
|
|
|
/* استایلهای منوی ناوبری */
|
|
.navbar {
|
|
padding: 0.8rem 0;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.nav-link {
|
|
position: relative;
|
|
color: #495057;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: #1743bb;
|
|
background-color: rgba(23, 67, 187, 0.05);
|
|
}
|
|
|
|
.nav-link.active {
|
|
color: #1743bb;
|
|
background-color: rgba(23, 67, 187, 0.1);
|
|
}
|
|
|
|
.btn-primary {
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 2px 5px rgba(23, 67, 187, 0.2);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 8px rgba(23, 67, 187, 0.3);
|
|
}
|
|
|
|
.transition-all {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.rul {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.accordion-button:after {
|
|
margin-right: auto;
|
|
margin-left: 0;
|
|
}
|
|
|
|
pre {
|
|
border-radius: 0.5rem;
|
|
direction: ltr;
|
|
background-color: #d6d6df;
|
|
padding: 0.9rem 0.8rem;
|
|
color: blue;
|
|
}
|
|
|
|
/* استایلهای RTL برای Modal */
|
|
#walletModal {
|
|
direction: rtl;
|
|
text-align: right;
|
|
}
|
|
|
|
#walletModal .modal-content {
|
|
font-family: 'Yekan Bakh FaNum', 'Tahoma', 'Arial', sans-serif;
|
|
direction: rtl;
|
|
text-align: right;
|
|
}
|
|
|
|
#walletModal .modal-header {
|
|
direction: rtl;
|
|
text-align: right;
|
|
border-bottom: 1px solid #dee2e6;
|
|
}
|
|
|
|
#walletModal .modal-title {
|
|
direction: rtl;
|
|
text-align: right;
|
|
font-family: 'Yekan Bakh FaNum', 'Tahoma', 'Arial', sans-serif;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#walletModal .btn-close {
|
|
margin-left: 0;
|
|
margin-right: auto;
|
|
order: -1;
|
|
}
|
|
|
|
#walletModal .modal-body {
|
|
direction: rtl;
|
|
text-align: right;
|
|
font-family: 'Yekan Bakh FaNum', 'Tahoma', 'Arial', sans-serif;
|
|
}
|
|
|
|
#walletModal .modal-footer {
|
|
direction: rtl;
|
|
text-align: right;
|
|
border-top: 1px solid #dee2e6;
|
|
}
|
|
|
|
#walletModal .modal-footer .btn {
|
|
font-family: 'Yekan Bakh FaNum', 'Tahoma', 'Arial', sans-serif;
|
|
direction: rtl;
|
|
}
|
|
|
|
#walletModal .alert {
|
|
direction: rtl;
|
|
text-align: right;
|
|
font-family: 'Yekan Bakh FaNum', 'Tahoma', 'Arial', sans-serif;
|
|
}
|
|
|
|
/* استایلهای backdrop برای RTL */
|
|
.modal-backdrop {
|
|
direction: rtl;
|
|
}
|