Skip to content
Open
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
4 changes: 2 additions & 2 deletions layouts/for-insights-teams/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ <h2 class="secondary-title">{{ with .Params.subtitle }} {{ index (split . " ") 0
</div>
</div>

<div id="secondary-pages-wrapper">
<div class="container-fluid">
<div id="secondary-pages-wrapper" >
<div class="container-fluid mb-5 pb-5">

{{ range .Site.Pages }}
{{ if and (eq .Type "for-insights-teams") (eq .Title "Automated data imports") }}
Expand Down
2 changes: 1 addition & 1 deletion layouts/market-researchers/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ <h2 class="secondary-title">{{ with .Params.subtitle }} {{ index (split . " ") 0
</div>

<div id="secondary-pages-wrapper">
<div class="container-fluid">
<div class="container-fluid mb-5 pb-5" >

{{ range .Site.Pages }}
{{ if and (eq .Type "market-researchers") (eq .Title "The survey analysis tool you need") }}
Expand Down
181 changes: 171 additions & 10 deletions layouts/partials/footer-nav.html

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion layouts/partials/product.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ <h2 class="secondary-title">{{ with .Params.subtitle }} <span>{{ index (split .
</div>

<div id="secondary-pages-wrapper">
<div class="container-fluid">

<div class="container-fluid cr-section-grey pb-5">


{{ range .Site.Pages }}
{{ if and (eq .Type "product") (eq .Title "Trackers tamed") }}
Expand Down
4 changes: 2 additions & 2 deletions layouts/powerful-survey-analytics/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ <h2 class="secondary-title">{{ with .Params.subtitle }} {{ index (split . " ") 0
</div>
</div>

<div id="secondary-pages-wrapper">
<div class="container-fluid">
<div id="secondary-pages-wrapper" class="mb-4">
<div class="container-fluid mb-5 pb-5">

{{ range .Site.Pages }}
{{ if and (eq .Type "powerful-survey-analytics") (eq .Title "Speed") }}
Expand Down
1 change: 1 addition & 0 deletions source/scss/base/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ $color-green: #107f65;
$color-white: #ffffff;
$color-off-black: #1D1D26;

$color-danger: #d84e4e;
// 7 shades of grey
$color-grey-lightest: #f9f9f9;
$color-grey-lighter: #f1f1f1;
Expand Down
85 changes: 83 additions & 2 deletions source/scss/layouts/_footer.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,48 @@
// Footer
.footer {
background: transparent linear-gradient(254deg, #010102 0%, #333346 100%) 0% 0% no-repeat padding-box;
position: relative;
z-index: 10;
padding: 20px 0;
color: $color-white;

li{
list-style: none;
}

#btn-subscribe{
margin-bottom: 1rem;
}

#call-action {
height: 0px;
}

#email-subscribe{
border-radius: 4px;
margin-bottom: 1rem;
width: 100%;
}

.border-top {
border-top:solid 1px #333346 !important;
}

.btn-primary {
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 4px;
}

.cta{
transform: translateY(-70px);
}

.label{
color: $color-white;
margin-bottom: 10px;
text-transform: initial;
}

.nav {
.nav-item a {
Expand All @@ -13,9 +53,35 @@
}
}
}

.phone-icon,
.email-icon
{
fill:$color-white;
min-width:22px;
}

.phone-icon{
fill:$color-white;
height:25px;
}

}

label#label-email-1d9b0565-b0af-44b5-a0fa-c389768043c7 {
display: none;
}
.hs-error-msg{
color:$color-danger
}

@include media-breakpoint-down(xs) {
.hs_error_rollup {
bottom: 0;
color:$color-danger;
left: -8px;
position: absolute;
}
@include media-breakpoint-down(xs) {

.footer {

Expand All @@ -26,18 +92,33 @@
}

}
#copy{
text-align: center;
}
#suscribe{
max-width: 90vw;
margin: auto;
}

}
.hs_error_rollup {
bottom: 13px;
color:$color-danger;
left: -28px;
position: relative;
}

}

.bg-black {
background-color: $color-off-black;

a,
.nav-link {
color: $color-white;

&:hover {
color: $color-grey-darker;
text-decoration: none;
}
}
}
Expand Down