Commit 633d4f4d authored by Simonas's avatar Simonas

a

parent a63dcfa0
......@@ -12,3 +12,7 @@
.l-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 300; }
/* critical:end */
.l-header {
.customize-support & { top: 32px; }
}
......@@ -13,6 +13,7 @@ c-: Signify that something is a Component. This is a concrete, implementation-sp
@import '_component--btn.css';
@import '_component--cookies-warning.css';
@import '_component--contact.css';
@import '_component--contact-employees-1.css';
@import '_component--copyright.css';
@import '_component--data-controller.css';
@import '_component--divisions.css';
......
/* ------------- Component: contact section ------------- */
/* critical:start */
.c-contact-employees-1 { padding: 20px 0; background: red;
@media (--max--medium) {
max-width: 440px; margin: 0 auto;
}
@media (--min--medium) {
padding: 50px 0;
}
}
.c-contact-employees-1--inner { max-width: 1000px; padding: 0 10px ;margin: 0 auto;
@media (--min--medium) {
display: flex; justify-content: space-between;
}
}
.c-contact-employees-1--content { color: #2A3644; font-weight: 500; line-height: 29px; padding: 15px 0 20px 15px;
@media (--min--medium) {
flex: 1 1 40%; max-width: 500px; padding: 75px 0 0 90px;
}
h3 { margin: 0 0 15px; font-size: 25px; color: #2A3644; font-weight: 500; }
p { margin: 0 0 20px; }
img { max-width: 100%; height: auto; }
}
.c-contact-employees-1--form { max-width: 420px;
@media (--min--medium) {
flex: 1 1 40%;
}
}
/* critical:end */
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
<?php
/**
* Template Name: Employees Landing Page I
*
* The employees landing page template file
* Learn more: https://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage Biuro
* @since 1.0
* @version 1.0
*/
get_header();
?>
<div id="content">
<main id="main" class="l-main">
<div class="c-contact-employees-1">
<div class="c-contact-employees-1--inner">
<div class="c-contact-employees-1--content">
<?php
if ( is_active_sidebar( 'front_page_employees' ) ) :
dynamic_sidebar( 'front_page_employees' );
endif;
?>
<div class="c-contact-employees-1--img">
<picture>
<source srcset="/wp-content/themes/biuro/i/contact.webp" type="image/jpeg">
<img src="/wp-content/themes/biuro/i/contact.png" alt="" width="328" height="95">
</picture>
</div>
</div>
<div class="c-contact-employees-1--form">
<?php
echo do_shortcode('[biuro-contacts--employees]');
?>
</div>
</div><!-- .c-contact-employees-1--inner -->
</div><!-- .c-contact-employees-1 -->
<?php
if ( is_active_sidebar( 'front_page_feedbacks' ) ) :
dynamic_sidebar( 'front_page_feedbacks' );
endif;
?>
</main><!-- .l-main -->
</div><!-- #content -->
<?php get_footer();
......@@ -128,9 +128,4 @@
</main><!-- .l-main -->
</div><!-- #content -->
<?php
// global $time_start;
// delog((microtime(true) - $time_start), 'Lorem ipsum');
?>
<?php get_footer();
......@@ -8,9 +8,6 @@
* @version 1.0
*/
// global $time_start;
// delog((microtime(true) - $time_start), 'Lorem ipsum');
global $query_string;
wp_parse_str( $query_string, $searchQuery );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment