Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task2: About-Us dropdown /Code of Coduct subpage #115

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
7 changes: 6 additions & 1 deletion ar-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,12 @@ <h2>نحن نُعزِز <span class="typed" data-typed-items="النمو الأ
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">الرئيسية</a></li>
<li><a class="nav-link scrollto" href="#about">من نحن</a></li>
<li class="dropdown"><a class="nav-link scrollto" href="#about"><span>من نحن</span> <i class="bi bi-chevron-left"></i></a>
<ul>
<li><a href="#about">من نحن؟</a></li>
<li><a href="./code-of-conduct/ar-code-of-conduct.html">القواعد السلوكية</a></li>
</ul>
</li>
<li><a class="nav-link scrollto" href="#services">ماهي العلوم المفتوحة</a></li>
<li><a class="nav-link scrollto" href="#testimonials">توصيات اليونسكو</a></li>
<li><a class="nav-link scrollto" href="#materials">نشاطاتنا التعليمية</a></li>
Expand Down
9 changes: 7 additions & 2 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1139,19 +1139,24 @@ section {
color: gray;
content: "/";
}

.text-justify {
text-align: justify;
}
@media (max-width: 768px) {
.breadcrumbs .d-flex {
display: block !important;
}

.breadcrumbs ol {
display: block;
/* display: block; */
}

.breadcrumbs ol li {
display: inline-block;
}
.text-justify {
text-align: left;
}
}

/*--------------------------------------------------------------
Expand Down
Loading