54 lines
821 B
Plaintext
54 lines
821 B
Plaintext
<div class="fixed-header">
|
|
{% include "header" %}
|
|
<div class="header-bar header-bar-1"></div>
|
|
{% include "sub_navigation" %}
|
|
<div class="header-bar header-bar-2"></div>
|
|
</div>
|
|
<style>
|
|
.fixed-header{
|
|
box-shadow: rgb(57 63 72 / 20%) 0px 3px 5px;
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: 50;
|
|
}
|
|
|
|
.scaled{
|
|
flex-basis: 22%;
|
|
max-width: 22%;
|
|
}
|
|
|
|
.np-sub-navigation{
|
|
margin-top: 0;
|
|
}
|
|
|
|
.header-bar{
|
|
height: 5px;
|
|
width: 100%;
|
|
}
|
|
|
|
.header-bar-1{
|
|
background: linear-gradient(90deg, #103F50 0%, #2D9EAF 100%);
|
|
}
|
|
|
|
.header-bar-2{
|
|
background-color: #D2E0DC;
|
|
}
|
|
|
|
@media screen and (min-width: 768px){
|
|
.scaled{
|
|
flex-basis: 12%;
|
|
max-width: 12%;
|
|
}
|
|
|
|
.header-bar-1{
|
|
margin-top: 70px;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1100px){
|
|
.scaled{
|
|
flex-basis: 10%;
|
|
max-width: 10%;
|
|
}
|
|
}
|
|
</style> |