Footer
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -10962,65 +10962,96 @@ header#header {
|
||||
footer#footer {
|
||||
&.c-footer {
|
||||
margin-top: 30px;
|
||||
padding-top: 44px;
|
||||
padding-bottom: 44px;
|
||||
padding-top: 25px;
|
||||
padding-bottom: 25px;
|
||||
background: #1e2832;
|
||||
|
||||
.footer-wrapper {
|
||||
.c-row {
|
||||
&-1 {
|
||||
padding-bottom: 20px;
|
||||
margin-bottom: 20px;
|
||||
border-bottom: solid 1px rgba(255, 255, 255, 0.2);
|
||||
// &-1 {
|
||||
// padding-bottom: 20px;
|
||||
// margin-bottom: 20px;
|
||||
// border-bottom: solid 1px rgba(255, 255, 255, 0.2);
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
// display: flex;
|
||||
// flex-direction: row;
|
||||
// align-items: center;
|
||||
// justify-content: space-between;
|
||||
|
||||
h5 {
|
||||
color: #ffffff;
|
||||
font-family: $font3;
|
||||
font-weight: 400;
|
||||
font-size: 32px;
|
||||
line-height: 1;
|
||||
letter-spacing: 5px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
// h5 {
|
||||
// color: #ffffff;
|
||||
// font-family: $font3;
|
||||
// font-weight: 400;
|
||||
// font-size: 32px;
|
||||
// line-height: 1;
|
||||
// letter-spacing: 5px;
|
||||
// text-transform: uppercase;
|
||||
// }
|
||||
|
||||
a {
|
||||
color: #ffffff;
|
||||
font-family: $font3;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 1;
|
||||
letter-spacing: 2px;
|
||||
text-transform: uppercase;
|
||||
// a {
|
||||
// color: #ffffff;
|
||||
// font-family: $font3;
|
||||
// font-weight: 400;
|
||||
// font-size: 16px;
|
||||
// line-height: 1;
|
||||
// letter-spacing: 2px;
|
||||
// text-transform: uppercase;
|
||||
|
||||
display: inline-flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
column-gap: 15px;
|
||||
padding: 15px 20px 13px;
|
||||
border: 1px solid #fff;
|
||||
border-radius: 30px;
|
||||
// display: inline-flex;
|
||||
// flex-direction: row;
|
||||
// align-items: center;
|
||||
// column-gap: 15px;
|
||||
// padding: 15px 20px 13px;
|
||||
// border: 1px solid #fff;
|
||||
// border-radius: 30px;
|
||||
|
||||
img {
|
||||
margin-top: -3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
// img {
|
||||
// margin-top: -3px;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
&-2 {
|
||||
padding-bottom: 20px;
|
||||
column-gap: 40px;
|
||||
|
||||
padding-top: 20px;
|
||||
border-top: solid 1px rgba(255, 255, 255, 0.2);
|
||||
|
||||
padding-bottom: 30px;
|
||||
margin-bottom: 20px;
|
||||
border-bottom: solid 1px rgba(255, 255, 255, 0.2);
|
||||
|
||||
@include respond-above(sm) {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 230px 230px 1fr;
|
||||
}
|
||||
@include respond-below(md) {
|
||||
grid-template-columns: 1fr 135px 135px 1fr;
|
||||
column-gap: 20px;
|
||||
}
|
||||
@include respond-below(sm) {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
row-gap: 40px;
|
||||
}
|
||||
@include respond-between(xxs, xs) {
|
||||
column-gap: 40px;
|
||||
row-gap: 60px;
|
||||
}
|
||||
|
||||
.c-col {
|
||||
&-1 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
row-gap: 30px;
|
||||
|
||||
@include respond-between(xs, sm) {
|
||||
width: 100%;
|
||||
}
|
||||
@include respond-between(xxs, xs) {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
> img {
|
||||
width: 100%;
|
||||
max-width: 110px;
|
||||
@@ -11044,6 +11075,83 @@ footer#footer {
|
||||
column-gap: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
&-2 {
|
||||
@include respond-between(xxs, xs) {
|
||||
order: 3;
|
||||
}
|
||||
}
|
||||
|
||||
&-3 {
|
||||
@include respond-between(xxs, xs) {
|
||||
order: 2;
|
||||
}
|
||||
}
|
||||
|
||||
&-4 {
|
||||
@include respond-between(xxs, xs) {
|
||||
order: 4;
|
||||
}
|
||||
}
|
||||
|
||||
&-2,
|
||||
&-3,
|
||||
&-4 {
|
||||
@include respond-between(xs, sm) {
|
||||
width: calc(100% / 3 - (20px - (20px / 3)));
|
||||
}
|
||||
}
|
||||
|
||||
@include respond-between(xxs, xs) {
|
||||
width: calc(100% / 2 - (40px - (40px / 2)));
|
||||
}
|
||||
|
||||
@include respond-below(xxs) {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-box {
|
||||
&:not(:last-child) {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
h6 {
|
||||
color: #ffffff;
|
||||
font-family: $font3;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 1.3;
|
||||
letter-spacing: 1px;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
ul {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
row-gap: 15px;
|
||||
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
line-height: 0.7;
|
||||
|
||||
a {
|
||||
color: #ffffff;
|
||||
font-family: $font3;
|
||||
font-weight: 400;
|
||||
font-size: 12px;
|
||||
line-height: 1;
|
||||
letter-spacing: 1px;
|
||||
|
||||
display: inline-flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
column-gap: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-3 {
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<footer id="footer" class="c-footer">
|
||||
<div class="container">
|
||||
<div class="footer-wrapper">
|
||||
<div class="c-row c-row-1">
|
||||
<!-- <div class="c-row c-row-1">
|
||||
<h5>Poznaj nowy wymiar z VIDOK</h5>
|
||||
<a href="/kontakt">
|
||||
kontakt z nami
|
||||
<img src="/upload/filemanager/icon/arrow-right-white.svg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
</div> -->
|
||||
<div class="c-row c-row-2">
|
||||
<div class="c-col c-col-1">
|
||||
<img src="/upload/filemanager/images/VIDOK-logo-new.png" alt="">
|
||||
@@ -40,31 +40,122 @@
|
||||
<h6>Produkty</h6>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="#">Okna</a>
|
||||
<a href="/okna/">Okna</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Drzwi wejściowe</a>
|
||||
<a href="/drzwi-wejsciowe/">Drzwi wejściowe</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Drzwi tarasowe</a>
|
||||
<a href="/drzwi-tarasowe/">Drzwi tarasowe</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Rolety</a>
|
||||
<a href="/rolety/">Rolety</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Dodatki</a>
|
||||
<a href="/dodatki-do-okien/">Dodatki</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Smart VIDOK</a>
|
||||
<a href="/smart-vidok/">Smart VIDOK</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-box">
|
||||
<h6>BESTSELLER</h6>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/okna/okna-pvc/linia-gold-energy/">GOLD ENERGY PVC</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/okna/okna-pvc/platinum-design/">PLATINUM DESIGN</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/linia-aqustic/">Linia AQUSTIC</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/okna/okna-pvc/linia-okien-vaccum/">Linia VACCUM+</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="c-col c-col-3">
|
||||
|
||||
<div class="nav-box">
|
||||
<h6>DLACZEGO MY?</h6>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/o-nas/">Firma</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/kontakt/">Kontakt</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/strefa-partnera/">Srefa partnera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/katalogi/">Katalogi</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/poradnik/">Poradnik</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/lider-od-1993/">Kariera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/projekty-ue/">Projekty UE</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="c-col c-col-4">
|
||||
|
||||
<div class="nav-box">
|
||||
<h6>SERWIS</h6>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/cennik/">Pakiet VIDOK +</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-box">
|
||||
<h6>Dokumenty do pobrania</h6>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/download.php?file=29&hash=f22eff2ddc897640b39777ab9395e32f">
|
||||
<img src="/upload/filemanager/icon/download-icon-1.svg" alt="">
|
||||
Karta gwarancyjna
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/download.php?file=14&hash=5e57986301ba09727f0253bc70ea94aa">
|
||||
<img src="/upload/filemanager/icon/download-icon-1.svg" alt="">
|
||||
OWS
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/upload/filemanager/do-pobrania/Instrukcja---konserwacja-i-obsluga-stolarki.pdf">
|
||||
<img src="/upload/filemanager/icon/download-icon-1.svg" alt="">
|
||||
Instrukcja-konserwacja i obsługa stolarki
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-box">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/procedura-zgloszen-wewnetrznych/">Procedura zgłoszeń wewnętrznych</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/polityka-cookies/">Polityka cookies</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/polityka-jakosci/">Polityka jakości</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/nota-prawna/">Nota prawna</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/polityka-prywatnosci/">Polityka prywatności</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="c-row c-row-3">
|
||||
|
||||
Reference in New Issue
Block a user