back up from last week since I forgot to push everything.
This commit is contained in:
@ -19,7 +19,7 @@
|
||||
<style>
|
||||
.search-bar {
|
||||
text-align: center;
|
||||
background: #f7f7f7;
|
||||
background: #fff;
|
||||
border-bottom: none;
|
||||
margin-bottom: 64px;
|
||||
padding: 24px 22px;
|
||||
@ -44,4 +44,4 @@
|
||||
.search-bar .np-header-search-icon {
|
||||
color:#0caa41;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
||||
@ -53,14 +53,15 @@
|
||||
{% include "popular_topics" %}
|
||||
|
||||
{% include "catalog_category_carousels" %}
|
||||
|
||||
|
||||
</main>
|
||||
{% include "footer" %}
|
||||
|
||||
<style>
|
||||
.np-homepage-hero-overlay {
|
||||
background: rgb(18,102,102);
|
||||
background: linear-gradient(43deg, rgba(18,102,102,1) 0%, rgba(12,170,65,1) 100%);
|
||||
/* background: rgb(18,102,102);
|
||||
background: linear-gradient(43deg, rgba(18,102,102,1) 0%, rgba(12,170,65,1) 100%); */
|
||||
background: #00A264;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
@ -69,7 +70,7 @@
|
||||
|
||||
.np-homepage-headline,
|
||||
.np-homepage-subheadline {
|
||||
color: #fff;
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.np-homepage-headline {
|
||||
@ -152,7 +153,7 @@
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
$('.show-more').click(function(e) {
|
||||
@ -177,11 +178,11 @@
|
||||
$(this).addClass("active")
|
||||
|
||||
$(".category-section").hide()
|
||||
|
||||
|
||||
$(".category-section").each(function() {
|
||||
if (selectedFilter == $(this).data("filter")) {
|
||||
$(this).show()
|
||||
}
|
||||
})
|
||||
})
|
||||
</script>
|
||||
</script>
|
||||
|
||||
@ -10,8 +10,15 @@
|
||||
{{ color_palette.header_color }}
|
||||
*/
|
||||
|
||||
body, html {
|
||||
font-family: 'Lato', 'Roboto', sans-serif;
|
||||
@font-face {
|
||||
font-family: "glassdoor-regular";
|
||||
src: url("https://s3.amazonaws.com/static.northpass.com/Glassdoor/GlassdoorSans-Regular.otf") format("opentype");
|
||||
}
|
||||
|
||||
body,
|
||||
main,
|
||||
html {
|
||||
font-family: 'glassdoor-regular', sans-serif;
|
||||
background: #fff;
|
||||
color: #0d0d0d;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user