Spaces:
Running
Running
File size: 1,509 Bytes
ad7d58d 8f6190f ad7d58d 8f6190f ad7d58d 8f6190f ad7d58d 8f6190f ad7d58d 74f37f5 ad7d58d 8f6190f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | /* تنسيق حاوية شريط التقدم */
#status-container {
background: rgba(255, 255, 255, 0.05);
padding: 15px;
border-radius: 12px;
margin: 20px 0;
border: 1px solid rgba(255, 255, 255, 0.1);
}
#status-text {
font-size: 14px;
margin-bottom: 10px;
color: #ecf0f1;
}
#progress-container {
width: 100%;
background-color: #1a2a44;
border-radius: 50px;
height: 10px;
overflow: hidden; /* لضمان عدم خروج اللون عن الزوايا المنحنية */
}
#progress-bar-fill {
width: 0%;
height: 100%;
background: linear-gradient(90deg, #27ae60, #2ecc71);
box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* تنسيق فقاعات الدردشة */
#chat-box {
height: 300px;
overflow-y: auto;
padding: 10px;
display: flex;
flex-direction: column;
gap: 10px;
}
.message {
max-width: 80%;
padding: 12px 16px;
border-radius: 15px;
font-size: 14px;
line-height: 1.5;
}
.message.user {
align-self: flex-start;
background: #34495e;
color: white;
border-bottom-right-radius: 2px;
}
.message.assistant {
align-self: flex-end;
background: #2980b9;
color: white;
border-bottom-left-radius: 2px;
}
/* تأثير عند تمرير الماوس على الزر */
#send-button:not(:disabled):hover {
background-color: #2ecc71;
transform: translateY(-2px);
transition: all 0.2s;
}
|