Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
GisDune authored Dec 31, 2024
1 parent 5c01f52 commit 82fcdc9
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,15 +202,21 @@
background: #b8870b;
}

@media (max-width: 480px) {
@media screen and (max-width: 768px) {
#container {
flex-direction: column; /* ترتيب العناصر عموديًا في الشاشات الصغيرة */
}
#map-container, #side-container {
width: 100%;
height: 100%; /* تأكيد ملائمة الحاويات على الشاشات الصغيرة */
height: 50vh; /* عرض الخريطة ونص الجانب عند تقسيم الشاشة */
}
}

@media screen and (max-width: 480px) {
#map-container, #side-container {
height: 70vh; /* تعديل الارتفاع في الشاشات الصغيرة جدًا */
}
}
.body {
font-size: 1.2em; /* تقليص حجم الخط بشكل أكبر */
}


</style>
Expand Down

0 comments on commit 82fcdc9

Please sign in to comment.