الگو:چعبه اطلاعات بروکر/styles.css: تفاوت میان نسخه‌ها

از ویکی تریدر | اولین دانشنامه تخصصی بازارهای مالی فارکس و ارز دیجیتال
بدون خلاصۀ ویرایش
بدون خلاصۀ ویرایش
 
خط ۴۸: خط ۴۸:


         .broker-rating {
         .broker-rating {
            font-size: 1.2rem; /* اندازه کوچک‌تر ستاره‌ها */
             color: #f39c12;
             color: #f39c12;
            font-weight: bold;
         }
         }


         .broker-rating span {
         .broker-rating span {
            font-size: 1.2rem; /* ستاره‌ها کوچکتر */
         }
         }



نسخهٔ کنونی تا ‏۲۱ دسامبر ۲۰۲۴، ساعت ۱۵:۱۲

        /* استایل‌های کلی ایزوله */
        .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;
            }
        }