This commit is contained in:
parent
cd7574c0fc
commit
7d1df2100e
2 changed files with 35 additions and 9 deletions
|
@ -21,6 +21,7 @@
|
|||
</div>
|
||||
</section>
|
||||
<section class="sold-section">
|
||||
<div class="sold-image-container">
|
||||
{{ range site.Params.sold }}
|
||||
{{ range .Icon }}
|
||||
<a>
|
||||
|
@ -28,6 +29,7 @@
|
|||
</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
<section class="features section">
|
||||
<div class="container">
|
||||
|
@ -46,9 +48,25 @@
|
|||
</div>
|
||||
</div>
|
||||
</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">
|
||||
<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>
|
||||
{{ with index site.Params.pricing 0 }}
|
||||
<div class="pricing-table-inner">
|
||||
|
|
|
@ -18,7 +18,7 @@ html {
|
|||
font-family: 'Open Sans', sans-serif;
|
||||
transform: scale(0.90);
|
||||
transform-origin: 0 0;
|
||||
width: 112%;
|
||||
width: 111%;
|
||||
}
|
||||
|
||||
body {
|
||||
|
@ -490,17 +490,25 @@ p {
|
|||
|
||||
.sold-section {
|
||||
background-color: #1f2b35;
|
||||
justify-content: center;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.sold-image-container {
|
||||
padding: 1.5rem;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 1.5rem;
|
||||
justify-content: space-around;
|
||||
width: 1050px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.sold-image {
|
||||
filter: grayscale(100%) brightness(250%);
|
||||
opacity: 0.5;
|
||||
height: 1.5rem;
|
||||
max-height: 1.5rem;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.inverted {
|
||||
|
|
Loading…
Add table
Reference in a new issue