Save
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
@@ -1019,6 +1019,12 @@ footer#site-footer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer-nav {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
row-gap: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
.col-text {
|
.col-text {
|
||||||
p {
|
p {
|
||||||
color: $cGray2;
|
color: $cGray2;
|
||||||
@@ -3864,35 +3870,29 @@ body.single-post {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body.page-id-3 main {
|
body.page-id-3,
|
||||||
|
body.page-id-397,
|
||||||
|
body.page-id-401 {
|
||||||
|
main {
|
||||||
padding-top: 80px;
|
padding-top: 80px;
|
||||||
}
|
.box-1 {
|
||||||
|
|
||||||
body.page-id-3 main .box-1 {
|
|
||||||
margin-bottom: 100px;
|
margin-bottom: 100px;
|
||||||
}
|
|
||||||
|
|
||||||
body.page-id-3 main .box-1 h1 {
|
h1 {
|
||||||
color: #232323;
|
color: #232323;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 64px;
|
font-size: 64px;
|
||||||
line-height: 120%;
|
line-height: 120%;
|
||||||
letter-spacing: -1.4px;
|
letter-spacing: -1.4px;
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 991px) {
|
@media (max-width: 991px) {
|
||||||
body.page-id-3 main .box-1 h1 {
|
|
||||||
font-size: 48px;
|
font-size: 48px;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 575px) {
|
@media (max-width: 575px) {
|
||||||
body.page-id-3 main .box-1 h1 {
|
|
||||||
font-size: 40px;
|
font-size: 40px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
h3 {
|
||||||
body.page-id-3 main .box-1 h3 {
|
|
||||||
color: #232323;
|
color: #232323;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
@@ -3900,21 +3900,17 @@ body.page-id-3 main .box-1 h3 {
|
|||||||
letter-spacing: -1.4px;
|
letter-spacing: -1.4px;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 991px) {
|
@media (max-width: 991px) {
|
||||||
body.page-id-3 main .box-1 h3 {
|
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 575px) {
|
@media (max-width: 575px) {
|
||||||
body.page-id-3 main .box-1 h3 {
|
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body.page-id-3 main .box-1 p {
|
p {
|
||||||
color: #232323;
|
color: #232323;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
@@ -3922,6 +3918,22 @@ body.page-id-3 main .box-1 p {
|
|||||||
letter-spacing: -0.32px;
|
letter-spacing: -0.32px;
|
||||||
margin-bottom: 0.8em;
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//* Kariera
|
//* Kariera
|
||||||
body.page-id-378 {
|
body.page-id-378 {
|
||||||
|
|||||||
@@ -65,9 +65,14 @@
|
|||||||
<?php echo wp_kses_post($footer['col_1']['text']); ?>
|
<?php echo wp_kses_post($footer['col_1']['text']); ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?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']); ?>
|
<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>
|
</a>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col col-2">
|
<div class="col col-2">
|
||||||
<ol>
|
<ol>
|
||||||
|
|||||||
34
wp-content/themes/brpfinanse/page-397.php
Normal file
34
wp-content/themes/brpfinanse/page-397.php
Normal 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();
|
||||||
34
wp-content/themes/brpfinanse/page-401.php
Normal file
34
wp-content/themes/brpfinanse/page-401.php
Normal 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();
|
||||||
Reference in New Issue
Block a user