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

Aligning and fixing overflowing elements #1483

Merged
merged 1 commit into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions website_and_docs/assets/scss/_backgrounds.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
@media (min-width: 991px) {
html, body {
max-width: 100%;
overflow-x: hidden;
}}

.-bg-selenium-green {
// https://www.svgbackgrounds.com/#liquid-cheese
// https://cssgenerator.org/rgba-and-hex-color-generator.html used to get the values
Expand Down
6 changes: 3 additions & 3 deletions website_and_docs/layouts/partials/announcement-banner.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{{ $color := "selenium-blue" }}
{{ $p1 := .p1 }}

<section id="announcement-banner" class="alert-static row -bg-{{ $color }}">
<div class="container" style="padding: 10px;">
<div class="row justify-content-center">
<section id="announcement-banner" class="alert-static g-0 row -bg-{{ $color }}">
<div class="container g-0" style="padding: 10px;">
<div class="row g-0 justify-content-center">
<div class="alert alert-{{ $color }} col-12 fade show mb-0 p-0 -bg-{{ $color }}" role="alert">
<h4 class="alert-heading text-center m-0">
SeleniumConf Chicago 2023 is a wrap!
Expand Down
2 changes: 1 addition & 1 deletion website_and_docs/layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{{ template "footer-links-block" . }}
{{ end }}
{{ end }}
<a href="https://www.netlify.com"> <img src="https://www.netlify.com/v3/img/components/netlify-light.svg" alt="Deploys by Netlify" /> </a>
<a href="https://www.netlify.com"> <img style="margin-right: 50px;" src="https://www.netlify.com/v3/img/components/netlify-light.svg" alt="Deploys by Netlify" /> </a>
</div>
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
{{ with .Site.Params.copyright }}<small class="text-white">&copy; {{ now.Year}} {{ .}} {{ T "footer_all_rights_reserved" }}</small>{{ end }}
Expand Down
2 changes: 2 additions & 0 deletions website_and_docs/layouts/partials/news-feed.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<div class="row">
<div class="d-flex justify-content-center p-5 td-box--100">
<h2 class="selenium">News</h2>
</div>
</div>
{{ $regular_pages := .regular_pages }}
{{ range first 3 (where $regular_pages "Type" "blog") }}
Expand Down
2 changes: 2 additions & 0 deletions website_and_docs/layouts/shortcodes/getting-started.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
{{ $type := .Get "type" | default "" }}
<a id="td-block-{{ .Ordinal }}" class="td-offset-anchor"></a>
{{ with .Get "title" }}
<div class="row">
<div class="d-flex justify-content-center td-box--{{ $col_id }} pt-5">
<h2>{{ . }}</h2>
</div>
</div>
{{ end }}
<section class="row td-box td-box--{{ $col_id }} td-box--gradient td-box--height-{{ $height }} pt-3">
<div class="col">
Expand Down
Loading