header and footer: add minor contrast, fix full-height stretching
This commit is contained in:
parent
8ca3180021
commit
24bd065ecb
|
@ -1,5 +1,5 @@
|
|||
<footer>
|
||||
<div class="footer-container">
|
||||
<div class="menu footer-container">
|
||||
<div style="font-size: 1rem">
|
||||
{{ site.footer }}
|
||||
</div>
|
||||
|
|
|
@ -32,8 +32,8 @@
|
|||
{% endfor %}
|
||||
</p>
|
||||
</main>
|
||||
{%- include footer.html -%}
|
||||
</div>
|
||||
{%- include footer.html -%}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
{% include primary-cta.html %}
|
||||
</main>
|
||||
{%- include footer.html -%}
|
||||
</div>
|
||||
{%- include footer.html -%}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -58,8 +58,8 @@
|
|||
{% include companies-carousel.html hide_title='true' %}
|
||||
</main>
|
||||
<br />
|
||||
{%- include footer.html -%}
|
||||
</div>
|
||||
{%- include footer.html -%}
|
||||
</body>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -4,17 +4,15 @@
|
|||
{%- include head.html -%}
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
|
||||
{%- include header.html -%}
|
||||
<div class="container">
|
||||
|
||||
<main>
|
||||
{{ content }}
|
||||
</main>
|
||||
|
||||
{%- include footer.html -%}
|
||||
|
||||
</div>
|
||||
{%- include footer.html -%}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
|
||||
{% include primary-cta.html %}
|
||||
</main>
|
||||
{%- include footer.html -%}
|
||||
</div>
|
||||
{%- include footer.html -%}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
</p>
|
||||
</article>
|
||||
</main>
|
||||
{%- include footer.html -%}
|
||||
</div>
|
||||
{%- include footer.html -%}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -138,6 +138,7 @@
|
|||
</section>
|
||||
|
||||
</main>
|
||||
</div>
|
||||
{%- include footer.html -%}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -160,10 +160,8 @@
|
|||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
{%- include footer.html -%}
|
||||
|
||||
</div>
|
||||
{%- include footer.html -%}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
|
@ -22,10 +22,6 @@ html {
|
|||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
main {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
body {
|
||||
width: 100%;
|
||||
background-color: var(--background-color);
|
||||
|
@ -36,6 +32,13 @@ body {
|
|||
color: var(--text-color);
|
||||
text-align: left;
|
||||
line-height: $base-line-height !important;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
body > div.container {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
h1 {
|
||||
|
@ -591,7 +594,8 @@ margin-bottom: 16px;
|
|||
|
||||
footer {
|
||||
color: var(--light-grey);
|
||||
border-top: 1px solid var(--light-grey);
|
||||
background-color: color-mix(in srgb, var(--background-color), white 1.5%);
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.13);
|
||||
padding: 40px 0px;
|
||||
text-align: right;
|
||||
margin-top: 80px;
|
||||
|
@ -627,6 +631,7 @@ header {
|
|||
padding: 24px;
|
||||
margin-bottom: 24px;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.13);
|
||||
background-color: color-mix(in srgb, var(--background-color), white 1.5%);
|
||||
}
|
||||
|
||||
header p {
|
||||
|
|
Loading…
Reference in New Issue