الگو:چعبه اطلاعات بروکر/styles.css: تفاوت میان نسخهها
Nazarzadeh (بحث | مشارکتها) بدون خلاصۀ ویرایش |
Nazarzadeh (بحث | مشارکتها) بدون خلاصۀ ویرایش |
||
خط ۴۸: | خط ۴۸: | ||
.broker-rating { | .broker-rating { | ||
color: #f39c12; | color: #f39c12; | ||
} | } | ||
.broker-rating span { | .broker-rating span { | ||
} | } | ||
نسخهٔ کنونی تا ۲۱ دسامبر ۲۰۲۴، ساعت ۱۵:۱۲
/* استایلهای کلی ایزوله */ .broker-container { font-family: 'Vazir', Arial, sans-serif; background-color: #f5f7fa; display: flex; justify-content: center; align-items: center; padding: 20px; box-sizing: border-box; } .broker-box { background: #2c3e50; color: #fff; width: 100%; max-width: 800px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); overflow: hidden; display: flex; flex-direction: column; gap: 16px; box-sizing: border-box; padding: 20px; } /* هدر بروکر */ .broker-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; } .broker-info { display: flex; align-items: center; gap: 15px; /* فاصله بیشتر از عکس */ } /* تصویر بروکر */ .broker-logo { width: 80px; height: 80px; border-radius: 8px; background-size: cover; } .broker-rating { color: #f39c12; } .broker-rating span { } /* ویژگیها */ .broker-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; } .broker-feature { background: #002244; border-radius: 8px; padding: 10px; font-size: 0.9rem; } /* لینکهای افقی */ .broker-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; } .broker-link { background: #002244; border-radius: 8px; padding: 10px; font-size: 0.9rem; color: #42eb9c; text-decoration: none; font-weight: bold; display: block; } .broker-link:hover { text-decoration: underline; } /* اطلاعات حساب */ .broker-accounts { display: flex; flex-wrap: wrap; justify-content: space-between; background: #1f2c38; padding: 10px; border-radius: 8px; gap: 10px; } .account-info { text-align: center; flex: 1 1 120px; font-size: 0.9rem; } .highlight { font-weight: bold; color: #42eb9c; } /* اطلاعات بروکر و راههای ارتباطی */ .broker-details { display: flex; justify-content: space-between; gap: 20px; } .contact-info, .broker-info-box { background: #002244; border-radius: 8px; padding: 10px; font-size: 0.9rem; display: flex; flex-direction: column; gap: 10px; flex: 1; } .contact-item, .info-item { display: flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-size: 0.9rem; } /* دکمه بزرگ */ .broker-button { background: linear-gradient(45deg, #42eb9c, #35c07d); color: #fff; font-size: 1.2rem; padding: 20px; border-radius: 8px; text-align: center; text-decoration: none; font-weight: bold; display: block; margin-top: 20px; transition: background-color 0.3s, box-shadow 0.3s; border: 2px solid transparent; } .broker-button:hover { background-color: #35c07d; box-shadow: 0 0 15px rgba(53, 192, 125, 0.7); border: 2px solid #42eb9c; } /* واکنشگرایی */ @media (max-width: 600px) { .broker-header { flex-direction: column; align-items: flex-start; gap: 10px; } .broker-features { grid-template-columns: 1fr; } .broker-accounts { flex-direction: column; align-items: center; } .broker-details { flex-direction: column; } .broker-links { grid-template-columns: 1fr; } }