پرش به محتوا

الگو:پاسخ تاشو/styles.css: تفاوت میان نسخه‌ها

از ویکی پاسخ
صفحه‌ای تازه حاوی « .question { transition: all 0.3s ease; } .question:hover { background: #eaffec; } .question::after { content: '▼'; position: absolute; left: 15px; transition: transform 0.3s ease; color: #94f7a1; font-size: 12px; } .question.active::after { transform: rotate(180deg);...» ایجاد کرد
 
بدون خلاصۀ ویرایش
خط ۲۶: خط ۲۶:


         .answer:not(.expanded) {
         .answer:not(.expanded) {
             max-height: 1.5em;
             max-height: 2em;
             white-space: nowrap;
             white-space: nowrap;
             text-overflow: ellipsis;
             text-overflow: ellipsis;

نسخهٔ ‏۷ فوریهٔ ۲۰۲۶، ساعت ۱۲:۱۱

        .question {
            transition: all 0.3s ease;
        }

        .question:hover {
            background: #eaffec;
        }

        .question::after {
            content: '▼';
            position: absolute;
            left: 15px;
            transition: transform 0.3s ease;
            color: #94f7a1;
            font-size: 12px;
        }

        .question.active::after {
            transform: rotate(180deg);
        }

        .answer {
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .answer:not(.expanded) {
            max-height: 2em;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .answer.expanded {
            max-height: 1000px;
            white-space: normal;
        }