Skip to content

Commit

Permalink
Merge pull request #489 from Lemoncode/fixaccesibility/#488-1-Landing…
Browse files Browse the repository at this point in the history
…-Heade-must-be-all-an-h1

Refactor h1
  • Loading branch information
brauliodiez committed May 22, 2024
2 parents ecaf811 + 0299b06 commit 089bc90
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,17 +94,19 @@
padding-top: 0;
padding-bottom: 4rem;
}
.info__company {
h1 {
display: flex;
align-items: center;
gap: 3%;
flex-direction: column;
}
.info__company img {
width: 12%;
height: 100%;
margin-top: 4px;
}
.info__company h2 {
.info__company {
display: flex;
align-items: center;
gap: 3%;
font-size: clamp(55px, 9vw, 10rem);
color: var(--accent);
background-image: linear-gradient(69deg, #96d9ab 30%, #ffffff 75%);
Expand Down Expand Up @@ -304,7 +306,7 @@
width: 70px;
margin-top: 0;
}
.info__company h2 {
.info__company {
line-height: 1.1;
}
}
Expand Down Expand Up @@ -340,15 +342,17 @@
</header>
<main class="main">
<div class="info container">
<div class="info__company">
<img
src="/assets/logo_mongo_modeler_dark_mode.svg"
alt="Mongo Modeler Logo"
/>
<h2 class="info__company">Mongo Modeler</h2>
</div>
<h1 class="info__claim">
A free, online Data Modeling tool for MongoDB.
<h1>
<span class="info__company">
<img
src="/assets/logo_mongo_modeler_dark_mode.svg"
alt="Mongo Modeler Logo"
/>
Mongo Modeler</span
>
<span class="info__claim">
A free, online Data Modeling tool for MongoDB.
</span>
</h1>
<div class="info__detail">
<div class="info__text">
Expand Down

0 comments on commit 089bc90

Please sign in to comment.