Skip to content

Commit

Permalink
Merge pull request #491 from Lemoncode/fixaccessibilitybug/#490-2-Imp…
Browse files Browse the repository at this point in the history
…rove-html-structure-of-landing-page

Accessibility - 2 improve html structure of landing page
  • Loading branch information
brauliodiez committed May 22, 2024
2 parents e79f76b + 7b81b52 commit 58f1ed7
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@
padding-top: 0.9rem;
width: 50%;
}
.info__text h3 {
.info__first {
font-weight: 400;
font-size: 30px;
}
.info__text p {
.info__community {
font-size: 24px;
padding-top: 1.2rem;
color: #fc5969;
Expand Down Expand Up @@ -200,10 +200,10 @@
.info__text {
padding-top: 0;
}
.info__text h3 {
.info__first {
font-size: 26px;
}
.info__text p {
.info__community {
font-size: 20px;
}
.info__group {
Expand Down Expand Up @@ -286,10 +286,10 @@
font-size: 18px;
}

.info__text h3 {
.info__first {
font-size: 22px;
}
.info__text p {
.info__community {
font-size: 19px;
}
.github p {
Expand Down Expand Up @@ -341,7 +341,7 @@
</a>
</header>
<main class="main">
<div class="info container">
<section class="info container">
<h1>
<span class="info__company">
<img
Expand All @@ -356,12 +356,13 @@ <h1>
</h1>
<div class="info__detail">
<div class="info__text">
<h3>
<p class="info__first">
Mongo Modeler is a <span class="highlight">free</span>, open
source <span class="highlight">tool</span> for visualization of
<span class="highlight">MongoDB</span> schema design
</h3>
<p>Community preview</p>
</p>

<p class="info__community">Community preview</p>
<div class="info__group">
<a href="./editor.html" class="info__link"
>Launch MongoDB Designer</a
Expand All @@ -378,17 +379,17 @@ <h3>
></iframe>
</div>
</div>
</div>
<div class="github">
<p class="container">
Interested in suggesting a new feature or reporting a bug? Visit our
project's Github page to make your contribution.
<a href="https://github.com/Lemoncode/mongo-modeler" target="_blank"
>Go to Github</a
>
</p>
</div>
</section>
</main>
<footer class="github">
<p class="container">
Interested in suggesting a new feature or reporting a bug? Visit our
project's Github page to make your contribution.
<a href="https://github.com/Lemoncode/mongo-modeler" target="_blank"
>Go to Github</a
>
</p>
</footer>
<script>
let installPrompt = null;
const installButton = document.querySelector('#install');
Expand Down

0 comments on commit 58f1ed7

Please sign in to comment.