پرش به محتوا

الگو:پاسخ تاشو/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 {
            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;
        }