update
All checks were successful
Hugo / build (push) Successful in 18s

This commit is contained in:
brookee 2024-03-01 03:14:21 -05:00
parent cd7574c0fc
commit 7d1df2100e
2 changed files with 35 additions and 9 deletions

View file

@ -21,13 +21,15 @@
</div> </div>
</section> </section>
<section class="sold-section"> <section class="sold-section">
{{ range site.Params.sold }} <div class="sold-image-container">
{{ range .Icon }} {{ range site.Params.sold }}
<a> {{ range .Icon }}
<img class="sold-image {{ .CSS }}" src="{{ .LogoURL }}" /> <a>
</a> <img class="sold-image {{ .CSS }}" src="{{ .LogoURL }}" />
</a>
{{ end }}
{{ end }} {{ end }}
{{ end }} </div>
</section> </section>
<section class="features section"> <section class="features section">
<div class="container"> <div class="container">
@ -46,9 +48,25 @@
</div> </div>
</div> </div>
</section> </section>
<section class="features section">
<div class="container has-top-divider">
<div class="features-inner section-inner">
<div class="features-wrap">
{{ range site.Params.feature }}
<div class="feature is-revealing feature-inner">
<div class="feature-description">
<h4 class="feature-title h3-mobile">{{ .FeatureTitle }}</h4>
<p class="text-sm">{{ .FeatureDescription }}</p>
</div>
</div>
{{ end }}
</div>
</div>
</div>
</section>
<section class="pricing section"> <section class="pricing section">
<div class="container"> <div class="container">
<div class="pricing-inner section-inner has-top-divider"> <div class="pricing-inner section-inner">
<h2 id="pricing" class="section-title mt-0 text-center">Pricing</h2> <h2 id="pricing" class="section-title mt-0 text-center">Pricing</h2>
{{ with index site.Params.pricing 0 }} {{ with index site.Params.pricing 0 }}
<div class="pricing-table-inner"> <div class="pricing-table-inner">

View file

@ -18,7 +18,7 @@ html {
font-family: 'Open Sans', sans-serif; font-family: 'Open Sans', sans-serif;
transform: scale(0.90); transform: scale(0.90);
transform-origin: 0 0; transform-origin: 0 0;
width: 112%; width: 111%;
} }
body { body {
@ -490,17 +490,25 @@ p {
.sold-section { .sold-section {
background-color: #1f2b35; background-color: #1f2b35;
justify-content: center;
display: flex;
}
.sold-image-container {
padding: 1.5rem; padding: 1.5rem;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
gap: 1.5rem; gap: 1.5rem;
justify-content: space-around; justify-content: space-around;
width: 1050px;
flex-wrap: wrap;
} }
.sold-image { .sold-image {
filter: grayscale(100%) brightness(250%); filter: grayscale(100%) brightness(250%);
opacity: 0.5; opacity: 0.5;
height: 1.5rem; max-height: 1.5rem;
width: auto;
} }
.inverted { .inverted {