Spaces:
Running
Running
File size: 1,611 Bytes
8d5ef81 cc7a1e5 8d5ef81 cc7a1e5 8d5ef81 cc7a1e5 8d5ef81 cc7a1e5 8d5ef81 cc7a1e5 8d5ef81 | 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 71 72 73 74 75 76 77 78 79 80 81 | body {
background-color: #0f172a; /* لون خلفية داكن ومريح */
color: #f8fafc;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
margin: 0;
direction: rtl; /* لدعم اللغة العربية */
}
h1 {
color: #4ade80; /* لون أخضر "بونساي" */
font-size: 1.5rem;
margin-bottom: 20px;
}
#status {
background-color: #1e293b;
border: 1px solid #334155;
padding: 10px;
border-radius: 8px;
font-size: 0.85rem;
width: 100%;
max-width: 500px;
margin-bottom: 15px;
text-align: center;
}
textarea {
width: 100%;
max-width: 500px;
background-color: #1e293b;
border: 1px solid #334155;
border-radius: 12px;
padding: 15px;
color: white;
font-size: 1rem;
resize: none;
outline: none;
margin-bottom: 15px;
}
textarea:focus {
border-color: #4ade80;
}
button {
background-color: #22c55e;
color: white;
border: none;
padding: 12px 30px;
border-radius: 8px;
font-weight: bold;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background-color: #16a34a;
}
button:disabled {
background-color: #475569;
cursor: not-allowed;
}
#output {
width: 100%;
max-width: 500px;
margin-top: 25px;
padding: 15px;
background-color: #1e293b;
border-right: 4px solid #4ade80; /* لمسة جمالية للرد */
border-radius: 8px;
min-height: 100px;
line-height: 1.6;
word-wrap: break-word;
}
|