This commit is contained in:
2026-02-19 14:52:45 +01:00
parent 39447cda3e
commit 19448d573f
6 changed files with 143 additions and 58 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1019,6 +1019,12 @@ footer#site-footer {
}
}
.footer-nav {
display: flex;
flex-direction: column;
row-gap: 6px;
}
.col-text {
p {
color: $cGray2;
@@ -3864,65 +3870,71 @@ body.single-post {
}
}
body.page-id-3 main {
padding-top: 80px;
}
body.page-id-3,
body.page-id-397,
body.page-id-401 {
main {
padding-top: 80px;
.box-1 {
margin-bottom: 100px;
body.page-id-3 main .box-1 {
margin-bottom: 100px;
}
h1 {
color: #232323;
font-weight: 500;
font-size: 64px;
line-height: 120%;
letter-spacing: -1.4px;
body.page-id-3 main .box-1 h1 {
color: #232323;
font-weight: 500;
font-size: 64px;
line-height: 120%;
letter-spacing: -1.4px;
}
@media (max-width: 991px) {
font-size: 48px;
}
@media (max-width: 575px) {
font-size: 40px;
}
}
h3 {
color: #232323;
font-weight: 500;
font-size: 24px;
line-height: 120%;
letter-spacing: -1.4px;
margin-bottom: 15px;
margin-top: 30px;
@media (max-width: 991px) {
body.page-id-3 main .box-1 h1 {
font-size: 48px;
@media (max-width: 991px) {
font-size: 22px;
}
@media (max-width: 575px) {
font-size: 18px;
}
}
p {
color: #232323;
font-weight: 400;
font-size: 18px;
line-height: 1.5;
letter-spacing: -0.32px;
margin-bottom: 0.8em;
}
ol,
ul {
list-style: initial;
li {
color: $cBlack;
font-weight: 400;
font-size: 18px;
line-height: 1.5;
letter-spacing: -0.32px;
margin-bottom: 0.8em;
}
}
}
}
}
@media (max-width: 575px) {
body.page-id-3 main .box-1 h1 {
font-size: 40px;
}
}
body.page-id-3 main .box-1 h3 {
color: #232323;
font-weight: 500;
font-size: 24px;
line-height: 120%;
letter-spacing: -1.4px;
margin-bottom: 15px;
margin-top: 30px;
}
@media (max-width: 991px) {
body.page-id-3 main .box-1 h3 {
font-size: 22px;
}
}
@media (max-width: 575px) {
body.page-id-3 main .box-1 h3 {
font-size: 18px;
}
}
body.page-id-3 main .box-1 p {
color: #232323;
font-weight: 400;
font-size: 18px;
line-height: 1.5;
letter-spacing: -0.32px;
margin-bottom: 0.8em;
}
//* Kariera
body.page-id-378 {
main.kariera-page {

View File

@@ -65,9 +65,14 @@
<?php echo wp_kses_post($footer['col_1']['text']); ?>
</div>
<?php endif; ?>
<a href="<?php echo esc_url($footer['col_1']['btn']['url']); ?>" target="<?php echo esc_attr($footer['col_1']['btn']['target'] ?: '_self'); ?>">
<?php echo esc_html($footer['col_1']['btn']['title']); ?>
</a>
<div class="footer-nav">
<?php foreach ($footer['col_1']['btns'] as $btn) : ?>
<a href="<?php echo esc_url($btn['btn']['url']); ?>" target="<?php echo esc_attr($btn['target'] ?: '_self'); ?>">
<?php echo esc_html($btn['btn']['title']); ?>
</a>
<?php endforeach; ?>
</div>
</div>
<div class="col col-2">
<ol>

View File

@@ -0,0 +1,34 @@
<?php
/**
* Page: RODO dla kandydatów
*/
get_header();
?>
<main id="primary" class="site-main">
<div class="box-0">
<?php get_template_part('inc/breadcrumb');?>
</div>
<div class="box-1">
<div class="container">
<div class="row">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</div>
</div>
</div>
</main>
<?php
get_footer();

View File

@@ -0,0 +1,34 @@
<?php
/**
* Page: RODO
*/
get_header();
?>
<main id="primary" class="site-main">
<div class="box-0">
<?php get_template_part('inc/breadcrumb');?>
</div>
<div class="box-1">
<div class="container">
<div class="row">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</div>
</div>
</div>
</main>
<?php
get_footer();