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

Tweaked layout around tablet breakpoints #199

Closed
wants to merge 8 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,11 +193,17 @@
.success-stories > div {
grid-column: main / -2;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-columns: 1fr 2fr;
grid-template-rows: min-content;
align-items: center;
gap: 4rem;
}
.success-stories > div:nth-of-type(even) {
grid-template-columns: 2fr 1fr;
}
.success-stories > div:nth-of-type(even) .spotlight {
padding-inline-end: 0;
}
.success-stories > * {
margin: 0;
padding: 0;
Expand Down Expand Up @@ -344,7 +350,7 @@ <h3><a href="/about/a-good-choice.html">Why Choose WPE?</a></h3>
<div class="spotlight"><h2>Success Story</h2>
<h3><a href="/blog/2022-success-metrological.html"><img src="/assets/img/[email protected]" alt="Metrological"></a></h3>
<p>WPE WebKit brought RDK, a modern, performant web browser, to millions of screens. It enables operators to manage devices and easily customize their UIs and apps and provides analytics to improve the customer experience and drive business results.</p>
<p><a href="/blog/2022-success-metrological.html" class="cta btn large">Read Success Story</a></p>
<p><a href="/blog/2022-success-metrological.html" class="cta btn large">Read More</a></p>
</div>
</div>

Expand Down