Commit b36be8ae32d8f13f4e887f9fef860c9bbb0942eb
Merge remote-tracking branch 'origin/master'
Showing
13 changed files
with
414 additions
and
196 deletions
Show diff stats
common/messages/ru/app.php
... | ... | @@ -169,7 +169,7 @@ return [ |
169 | 169 | 'index_ses_for' => 'Солнечные станции для', |
170 | 170 | 'index_ses_fiz' => 'физических лиц', |
171 | 171 | 'index_ses_leg' => 'юридических лиц', |
172 | - 'index_why_us' => 'Почему мы', | |
172 | + 'index_why_us' => 'Проектирование солнечных электростанций', | |
173 | 173 | |
174 | 174 | 'index_title1' => 'Мы первые подключили СЭС', |
175 | 175 | 'index_subtitle1' => 'по Зеленому тарифу в Киевской области', | ... | ... |
common/messages/ua/app.php
... | ... | @@ -171,7 +171,7 @@ return [ |
171 | 171 | 'index_ses_for' => 'Сонячні станції для', |
172 | 172 | 'index_ses_fiz' => 'фізичних осіб', |
173 | 173 | 'index_ses_leg' => 'юридичних осіб', |
174 | - 'index_why_us' => 'ЧОМУ САМЕ МИ?', | |
174 | + 'index_why_us' => 'Проектування сонячних електростанцій', | |
175 | 175 | |
176 | 176 | 'index_title1' => 'МИ ПЕРШІ ПІДКЛЮЧИЛИ СЕС', |
177 | 177 | 'index_subtitle1' => 'по зеленому тарифу в Київській області', | ... | ... |
frontend/views/blog/_article_item.php
... | ... | @@ -13,7 +13,7 @@ |
13 | 13 | ?> |
14 | 14 | |
15 | 15 | <section class="post"> |
16 | - <h2 class="big-text-2"> | |
16 | + <div class="h2 big-text-2"> | |
17 | 17 | <a |
18 | 18 | href="<?=Url::toRoute( |
19 | 19 | [ |
... | ... | @@ -24,7 +24,7 @@ |
24 | 24 | > |
25 | 25 | <?=$model->lang->title?> |
26 | 26 | </a> |
27 | - </h2> | |
27 | + </div> | |
28 | 28 | <div class="row"> |
29 | 29 | <div class="col-sm-6"> |
30 | 30 | <!-- <p class="author-category">--> | ... | ... |
frontend/views/blog/view.php
... | ... | @@ -61,7 +61,7 @@ |
61 | 61 | <div class="row"> |
62 | 62 | <div class="col-md-12"> |
63 | 63 | <div class="panel-heading"> |
64 | - <h3 class="panel-title"><?= \Yii::t('app', 'leavecomment') ?></h3> | |
64 | + <div class="h3 panel-title"><?= \Yii::t('app', 'leavecomment') ?></div> | |
65 | 65 | </div> |
66 | 66 | <?= CommentWidget::widget( |
67 | 67 | [ | ... | ... |
frontend/views/layouts/main.php
... | ... | @@ -107,6 +107,9 @@ |
107 | 107 | $langs_head = artbox\core\widgets\LangLink::widget(); |
108 | 108 | $langs_head = str_replace(" / ".$this_lang,"",$langs_head); |
109 | 109 | $langs_head = str_replace($this_lang." / ","",$langs_head); |
110 | + // удаляет последний "/" в ссылке тэга, после ссылки тэг закрывается | |
111 | + $langs_head = str_replace("/\">", "\">", $langs_head); | |
112 | + | |
110 | 113 | echo "<span class='active_lang'>$this_lang</span>".$langs_head; |
111 | 114 | ?> |
112 | 115 | </div> |
... | ... | @@ -128,7 +131,7 @@ |
128 | 131 | <div class="container"> |
129 | 132 | <div class="navbar-header"> |
130 | 133 | |
131 | - <a class="navbar-brand home" href="<?php echo Url::to(['site/index']); ?>"> | |
134 | + <a class="navbar-brand home" href="<?= rtrim(Url::to(['site/index']), "/") ?>"> | |
132 | 135 | <img |
133 | 136 | src="/img/logo_kb.png" |
134 | 137 | alt="<?= $settings->name; ?>" |
... | ... | @@ -618,7 +621,7 @@ |
618 | 621 | 'links' => isset($this->params[ 'breadcrumbs' ]) ? $this->params[ 'breadcrumbs' ] : [], |
619 | 622 | 'homeLink' => [ |
620 | 623 | 'label' => \Yii::t('app', "Home"), |
621 | - 'url' => \Yii::$app->homeUrl . \artbox\core\models\Language::getCurrent()->url | |
624 | + 'url' => rtrim(Url::toRoute('site/index', true), "/") | |
622 | 625 | ] |
623 | 626 | ] |
624 | 627 | ) ?> |
... | ... | @@ -637,14 +640,15 @@ |
637 | 640 | |
638 | 641 | <!-- *** FOOTER *** |
639 | 642 | _________________________________________________________ --> |
640 | - | |
643 | + | |
641 | 644 | <footer id="footer"> |
642 | 645 | <div class="container"> |
646 | + <div itemscope itemtype="http://schema.org/Organization"> | |
643 | 647 | <div class="col-md-5 col-sm-12"> |
644 | 648 | <?php |
645 | 649 | if (!empty($settings->about)) { |
646 | 650 | ?> |
647 | - <h4><?php echo \Yii::t('app', 'About us'); ?></h4> | |
651 | + <div class="h4" itemprop="description"><?php echo \Yii::t('app', 'About us'); ?></div> | |
648 | 652 | <p style="max-width: 235px;"><?php echo \Yii::t('app', $settings->about); ?></p> |
649 | 653 | <?php |
650 | 654 | } |
... | ... | @@ -664,7 +668,7 @@ |
664 | 668 | </div> |
665 | 669 | |
666 | 670 | <div class="col-md-3 col-sm-12"> |
667 | - <h4><?php echo \Yii::t('app', 'NewsFollow'); ?></h4> | |
671 | + <div class="h4"><?php echo \Yii::t('app', 'NewsFollow'); ?></div> | |
668 | 672 | <div class="social-logos"> |
669 | 673 | <span> |
670 | 674 | <?php |
... | ... | @@ -678,24 +682,26 @@ |
678 | 682 | </div> |
679 | 683 | <div class="col-md-4 col-sm-12"> |
680 | 684 | |
681 | - <h4><?php echo \Yii::t('app', 'Contact'); ?></h4> | |
685 | + <div class="h4"><?php echo \Yii::t('app', 'Contact'); ?></div> | |
682 | 686 | |
683 | 687 | <p> |
688 | + <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> | |
684 | 689 | <table border="0" class="address_footer_table"> |
685 | - <tr><td><b><i class="fa fa-map-marker" aria-hidden="true"></i></b></td><td>02095, <?=\Yii::t('app', $settings->country)?>, <?=\Yii::t('app', 'city_short')?>. <?=\Yii::t('app', $settings->city)?> <br/><?=\Yii::t('app', $settings->street)?>, <?=\Yii::t('app', $settings->house)?>, <?=\Yii::t('app', 'office')?> <?=\Yii::t('app', $settings->office)?></td></tr> | |
690 | + <tr><td><b><i class="fa fa-map-marker" aria-hidden="true"></i></b></td><td><span itemprop="postalCode">02095</span>, <span itemprop="addressCountry"><?=\Yii::t('app', $settings->country)?></span>, <?=\Yii::t('app', 'city_short')?>. <span itemprop="addressLocality"><?=\Yii::t('app', $settings->city)?></span> <br/><span itemprop="streetAddress"><?=\Yii::t('app', $settings->street)?>, <?=\Yii::t('app', $settings->house)?>, <?=\Yii::t('app', 'office')?> <?=\Yii::t('app', $settings->office)?></span></td></tr> | |
686 | 691 | <?php |
687 | 692 | if(!empty($settings->phone)){ |
688 | - echo '<tr><td><b><i class="fa fa-phone" aria-hidden="true"></i></b></td><td><a href="tel:'.$settings->phone.'">'.$settings->phone.'</a>'; | |
693 | + echo '<tr><td><b><i class="fa fa-phone" aria-hidden="true"></i></b></td><td><a href="tel:'.$settings->phone.'"><span itemprop="telephone">'.$settings->phone.'</span></a>'; | |
689 | 694 | if(!empty($settings->phone2)){ |
690 | - echo '<br/><a href="tel:'.$settings->phone2.'">'.$settings->phone2.'</a></td></tr>'; | |
695 | + echo '<br/><a href="tel:'.$settings->phone2.'"><span itemprop="telephone">'.$settings->phone2.'</span></a></td></tr>'; | |
691 | 696 | } |
692 | 697 | else{ |
693 | 698 | echo '</td></tr>'; |
694 | 699 | } |
695 | 700 | } |
696 | 701 | ?> |
697 | - <tr><td><b><i class="fa fa-envelope" aria-hidden="true"></i></b></td><td><a href="mailto:<?=$settings->email?>"><?=$settings->email?></td></tr> | |
702 | + <tr><td><b><i class="fa fa-envelope" aria-hidden="true"></i></b></td><td><span itemprop="email"><a href="mailto:<?=$settings->email?>"><?=$settings->email?></a></span></td></tr> | |
698 | 703 | </table> |
704 | + </div> | |
699 | 705 | </p> |
700 | 706 | <!-- --><?php |
701 | 707 | // if (!empty($settings->office)) { |
... | ... | @@ -743,6 +749,7 @@ |
743 | 749 | ) ?>. <?= $settings->name; ?>. <?=\Yii::t('app', 'footer_all_rights')?>.<br/> |
744 | 750 | <?=\Yii::t('app', 'footer_using_mats')?>.</p> |
745 | 751 | </div> |
752 | + </div> | |
746 | 753 | </div> |
747 | 754 | <!-- /.container --> |
748 | 755 | </footer> | ... | ... |
frontend/views/object/index.php
... | ... | @@ -57,7 +57,7 @@ |
57 | 57 | </div> |
58 | 58 | <div class="bg"></div> |
59 | 59 | <div class="name"> |
60 | - <h3><a | |
60 | + <div class="h3"><a | |
61 | 61 | href="<?=Url::toRoute( |
62 | 62 | [ |
63 | 63 | 'object/view', |
... | ... | @@ -67,7 +67,7 @@ |
67 | 67 | > |
68 | 68 | <?=$object->lang->object_name?> |
69 | 69 | </a> |
70 | - </h3> | |
70 | + </div> | |
71 | 71 | </div> |
72 | 72 | <div class="text"> |
73 | 73 | <p class="buttons"> |
... | ... | @@ -101,26 +101,26 @@ |
101 | 101 | <div class="row showcase projects"> |
102 | 102 | <div class="col-md-3 col-sm-6"> |
103 | 103 | <div class="item"> |
104 | - <h4><span class="counter">200</span><br> | |
105 | - <?=\Yii::t('app', 'showcase_pr_text1')?></h4> | |
104 | + <div class="h4"><span class="counter">200</span><br> | |
105 | + <?=\Yii::t('app', 'showcase_pr_text1')?></div> | |
106 | 106 | </div> |
107 | 107 | </div> |
108 | 108 | <div class="col-md-3 col-sm-6"> |
109 | 109 | <div class="item"> |
110 | - <h4><span class="counter-next">1<?=\Yii::t('app', 'firsts')?></span><br> | |
111 | - <?=\Yii::t('app', 'showcase_pr_text2')?></h4> | |
110 | + <div class="h4"><span class="counter-next">1<?=\Yii::t('app', 'firsts')?></span><br> | |
111 | + <?=\Yii::t('app', 'showcase_pr_text2')?></div> | |
112 | 112 | </div> |
113 | 113 | </div> |
114 | 114 | <div class="col-md-3 col-sm-6"> |
115 | 115 | <div class="item"> |
116 | - <h4><span class="counter">10</span><span class="counter-next">+</span><br> | |
117 | - <?=\Yii::t('app', 'showcase_pr_text3')?></h4> | |
116 | + <div class="h4"><span class="counter">10</span><span class="counter-next">+</span><br> | |
117 | + <?=\Yii::t('app', 'showcase_pr_text3')?></div> | |
118 | 118 | </div> |
119 | 119 | </div> |
120 | 120 | <div class="col-md-3 col-sm-6"> |
121 | 121 | <div class="item"> |
122 | - <h4><span>1<?=\Yii::t('app', 'firsts')?></span><br> | |
123 | - <?=\Yii::t('app', 'showcase_pr_text4')?></h4> | |
122 | + <div class="h4"><span>1<?=\Yii::t('app', 'firsts')?></span><br> | |
123 | + <?=\Yii::t('app', 'showcase_pr_text4')?></div> | |
124 | 124 | </div> |
125 | 125 | </div> |
126 | 126 | </div> | ... | ... |
frontend/views/site/contact.php
... | ... | @@ -16,7 +16,7 @@ |
16 | 16 | $settings = Settings::getInstance(); |
17 | 17 | $seo = \Yii::$app->get('seo'); |
18 | 18 | |
19 | - $this->params['h1'] = $seo->h1; | |
19 | + $this->params['h1'] = \Yii::t('app', 'menu-contacts'); | |
20 | 20 | $this->params[ 'breadcrumbs' ][] = $this->params['h1']; |
21 | 21 | |
22 | 22 | $js = <<< JS |
... | ... | @@ -39,7 +39,7 @@ JS; |
39 | 39 | <h2><?= \Yii::t('app', 'contact_title') ?></h2> |
40 | 40 | </div> |
41 | 41 | |
42 | - <p class="lead"><?= \Yii::t('app', 'contact_text1') ?></p> | |
42 | +<!-- <p class="lead">--><?//= \Yii::t('app', 'contact_text1') ?><!--</p>--> | |
43 | 43 | <!-- <div class="contacts_photo"><img src="/img/contacts_photo.jpg" alt=""></div>--> |
44 | 44 | </section> |
45 | 45 | </div> | ... | ... |
frontend/views/site/index.php
... | ... | @@ -61,10 +61,10 @@ JS; |
61 | 61 | <div class="container"> |
62 | 62 | <div class="row"> |
63 | 63 | <div class="col-xs-12 col-sm-12 col-md-6 lsf-left"> |
64 | - <p><?=\Yii::t('app', 'index_ses_for')?> <a href="site/legal"><?=\Yii::t('app', 'index_ses_leg')?></a></p> | |
64 | + <p><?=\Yii::t('app', 'index_ses_for')?> <a href="<?=Url::toRoute("site/legal")?>"><?=\Yii::t('app', 'index_ses_leg')?></a></p> | |
65 | 65 | </div> |
66 | 66 | <div class="col-xs-12 col-sm-12 col-md-6 lsf-right"> |
67 | - <p><?=\Yii::t('app', 'index_ses_for')?> <a href="site/individual"><?=\Yii::t('app', 'index_ses_fiz')?></a></p> | |
67 | + <p><?=\Yii::t('app', 'index_ses_for')?> <a href="<?=Url::toRoute("site/individual")?>"><?=\Yii::t('app', 'index_ses_fiz')?></a></p> | |
68 | 68 | </div> |
69 | 69 | </div> |
70 | 70 | </div> |
... | ... | @@ -73,7 +73,7 @@ JS; |
73 | 73 | <section class="blue-fon why-us-wr no-mg"> |
74 | 74 | <div class="container"> |
75 | 75 | <div class="heading text-center"> |
76 | - <h2 class="big-text"><?=\Yii::t('app', 'index_why_us')?></h2> | |
76 | + <div class="h2 big-text"><?=\Yii::t('app', 'index_why_us')?></div> | |
77 | 77 | </div> |
78 | 78 | <div class="why-us container"> |
79 | 79 | <div class="col-md-12 row"> |
... | ... | @@ -82,7 +82,7 @@ JS; |
82 | 82 | <div class="icon"> |
83 | 83 | <img src="/img/icon_1.png"> |
84 | 84 | </div> |
85 | - <h3><?=\Yii::t('app', 'index_title1')?></h3> | |
85 | + <div class="h3"><?=\Yii::t('app', 'index_title1')?></div> | |
86 | 86 | <p><?=\Yii::t('app', 'index_subtitle1')?></p> |
87 | 87 | <img src="/img/line.png" class="line_why hidden-xs hidden-sm"> |
88 | 88 | </div> |
... | ... | @@ -92,7 +92,7 @@ JS; |
92 | 92 | <div class="icon"> |
93 | 93 | <img src="/img/icon_2.png"> |
94 | 94 | </div> |
95 | - <h3><?=\Yii::t('app', 'index_title2')?></h3> | |
95 | + <div class="h3"><?=\Yii::t('app', 'index_title2')?></div> | |
96 | 96 | <p><?=\Yii::t('app', 'index_subtitle2')?></p> |
97 | 97 | <img src="/img/line.png" class="line_why hidden-xs hidden-sm"> |
98 | 98 | </div> |
... | ... | @@ -102,7 +102,7 @@ JS; |
102 | 102 | <div class="icon"> |
103 | 103 | <img src="/img/icon_3.png"> |
104 | 104 | </div> |
105 | - <h3><?=\Yii::t('app', 'index_title3')?></h3> | |
105 | + <div class="h3"><?=\Yii::t('app', 'index_title3')?></div> | |
106 | 106 | <p><?=\Yii::t('app', 'index_subtitle3')?></p> |
107 | 107 | </div> |
108 | 108 | </div> |
... | ... | @@ -112,7 +112,7 @@ JS; |
112 | 112 | <div class="icon"> |
113 | 113 | <img src="/img/icon_4.png"> |
114 | 114 | </div> |
115 | - <h3><?=\Yii::t('app', 'index_title4')?></h3> | |
115 | + <div class="h3"><?=\Yii::t('app', 'index_title4')?></div> | |
116 | 116 | <p><?=\Yii::t('app', 'index_subtitle4')?></p> |
117 | 117 | </div> |
118 | 118 | </div> |
... | ... | @@ -121,7 +121,7 @@ JS; |
121 | 121 | <div class="icon"> |
122 | 122 | <img src="/img/icon_5.png"> |
123 | 123 | </div> |
124 | - <h3><?=\Yii::t('app', 'index_title5')?></h3> | |
124 | + <div class="h3"><?=\Yii::t('app', 'index_title5')?></div> | |
125 | 125 | <p><?=\Yii::t('app', 'index_subtitle5')?></p> |
126 | 126 | </div> |
127 | 127 | </div> |
... | ... | @@ -259,7 +259,7 @@ JS; |
259 | 259 | <div class="container"> |
260 | 260 | <div class="col-md-12"> |
261 | 261 | <div class="heading text-center"> |
262 | - <h2><?=\Yii::t('app', 'index_objects')?></h2> | |
262 | + <div class="h2"><?=\Yii::t('app', 'index_objects')?></div> | |
263 | 263 | </div> |
264 | 264 | <div class="row portfolio"> |
265 | 265 | <?php |
... | ... | @@ -316,7 +316,7 @@ JS; |
316 | 316 | </div> |
317 | 317 | <div class="row"> |
318 | 318 | <div class="col-md-12 col-xs-12" style="text-align:center;margin-top: 20px;margin-bottom: -35px;"> |
319 | - <a href='object/index' class="button1 more-projects"><?= Yii::t('app', 'sect2_6') ?></a> | |
319 | + <a href='<?=Url::toRoute("object/index")?>' class="button1 more-projects"><?= Yii::t('app', 'sect2_6') ?></a> | |
320 | 320 | </div> |
321 | 321 | </div> |
322 | 322 | </div> |
... | ... | @@ -327,7 +327,7 @@ JS; |
327 | 327 | <section class="blue-fon no-mg economy-wr"> |
328 | 328 | <div class="container"> |
329 | 329 | <div class="heading text-center"> |
330 | - <h2 class="big-text"><?=\Yii::t('app', 'index_economy1')?> <br/><?=\Yii::t('app', 'index_economy2')?></h2> | |
330 | + <div class="h2 big-text"><?=\Yii::t('app', 'index_economy1')?> <br/><?=\Yii::t('app', 'index_economy2')?></div> | |
331 | 331 | </div> |
332 | 332 | <div class="row"> |
333 | 333 | <div class="col-xs-12 col-sm-4"> |
... | ... | @@ -335,7 +335,7 @@ JS; |
335 | 335 | <div class="icon"> |
336 | 336 | <img src="/img/icon_sentence.png"> |
337 | 337 | </div> |
338 | - <h3><?=\Yii::t('app', 'index_economy3')?></h3> | |
338 | + <div class="h3"><?=\Yii::t('app', 'index_economy3')?></div> | |
339 | 339 | <p><?=\Yii::t('app', 'index_economy4')?></p> |
340 | 340 | </div> |
341 | 341 | </div> |
... | ... | @@ -344,7 +344,7 @@ JS; |
344 | 344 | <div class="icon"> |
345 | 345 | <img src="/img/icon_agreement.png"> |
346 | 346 | </div> |
347 | - <h3><?=\Yii::t('app', 'index_economy5')?></h3> | |
347 | + <div class="h3"><?=\Yii::t('app', 'index_economy5')?></div> | |
348 | 348 | <p><?=\Yii::t('app', 'index_economy6')?></p> |
349 | 349 | </div> |
350 | 350 | </div> |
... | ... | @@ -353,7 +353,7 @@ JS; |
353 | 353 | <div class="icon"> |
354 | 354 | <img src="/img/icon_installation.png"> |
355 | 355 | </div> |
356 | - <h3><?=\Yii::t('app', 'index_economy7')?></h3> | |
356 | + <div class="h3"><?=\Yii::t('app', 'index_economy7')?></div> | |
357 | 357 | <p><?=\Yii::t('app', 'index_economy8')?></p> |
358 | 358 | </div> |
359 | 359 | </div> |
... | ... | @@ -362,7 +362,7 @@ JS; |
362 | 362 | <div class="icon"> |
363 | 363 | <img src="/img/icon_tarrif.png"> |
364 | 364 | </div> |
365 | - <h3><?=\Yii::t('app', 'index_economy13')?></h3> | |
365 | + <div class="h3"><?=\Yii::t('app', 'index_economy13')?></div> | |
366 | 366 | <p><?=\Yii::t('app', 'index_economy14')?></p> |
367 | 367 | </div> |
368 | 368 | </div> |
... | ... | @@ -371,7 +371,7 @@ JS; |
371 | 371 | <div class="icon"> |
372 | 372 | <img src="/img/icon_service.png"> |
373 | 373 | </div> |
374 | - <h3><?=\Yii::t('app', 'index_economy11')?></h3> | |
374 | + <div class="h3"><?=\Yii::t('app', 'index_economy11')?></div> | |
375 | 375 | <p><?=\Yii::t('app', 'index_economy12')?></p> |
376 | 376 | </div> |
377 | 377 | </div> |
... | ... | @@ -380,7 +380,7 @@ JS; |
380 | 380 | <div class="icon"> |
381 | 381 | <img src="/img/icon_recomendation.png"> |
382 | 382 | </div> |
383 | - <h3><?=\Yii::t('app', 'index_economy9')?></h3> | |
383 | + <div class="h3"><?=\Yii::t('app', 'index_economy9')?></div> | |
384 | 384 | <p><?=\Yii::t('app', 'index_economy10')?></p> |
385 | 385 | </div> |
386 | 386 | </div> | ... | ... |
frontend/views/site/individual.php
... | ... | @@ -12,7 +12,7 @@ |
12 | 12 | use artbox\core\models\Feedback; |
13 | 13 | use common\models\Settings; |
14 | 14 | use yii\helpers\Html; |
15 | - use yii\bootstrap\ActiveForm; | |
15 | + use yii\helpers\Url; | |
16 | 16 | use yii\web\View; |
17 | 17 | use common\models\Objectkb; |
18 | 18 | |
... | ... | @@ -179,30 +179,30 @@ |
179 | 179 | <div class="row showcase"> |
180 | 180 | <div class="col-md-3 col-sm-6"> |
181 | 181 | <div class="item"> |
182 | - <h4><span class="counter">58</span><br> | |
182 | + <div class="h3"><span class="counter">58</span><br> | |
183 | 183 | |
184 | - <?= Yii::t('app', 'sect22_1') ?></h4> | |
184 | + <?= Yii::t('app', 'sect22_1') ?></div> | |
185 | 185 | </div> |
186 | 186 | </div> |
187 | 187 | <div class="col-md-3 col-sm-6"> |
188 | 188 | <div class="item"> |
189 | - <h4><span class="counter">117</span><br> | |
189 | + <div class="h3"><span class="counter">117</span><br> | |
190 | 190 | |
191 | - <?= Yii::t('app', 'sect22_2') ?></h4> | |
191 | + <?= Yii::t('app', 'sect22_2') ?></div> | |
192 | 192 | </div> |
193 | 193 | </div> |
194 | 194 | <div class="col-md-3 col-sm-6"> |
195 | 195 | <div class="item"> |
196 | - <h4><span class="counter">193</span><br> | |
196 | + <div class="h3"><span class="counter">193</span><br> | |
197 | 197 | |
198 | - <?= Yii::t('app', 'sect22_3') ?></h4> | |
198 | + <?= Yii::t('app', 'sect22_3') ?></div> | |
199 | 199 | </div> |
200 | 200 | </div> |
201 | 201 | <div class="col-md-3 col-sm-6"> |
202 | 202 | <div class="item"> |
203 | - <h4><span class="counter">303</span><br> | |
203 | + <div class="h3"><span class="counter">303</span><br> | |
204 | 204 | |
205 | - <?= Yii::t('app', 'sect22_4') ?></h4> | |
205 | + <?= Yii::t('app', 'sect22_4') ?></div> | |
206 | 206 | </div> |
207 | 207 | </div> |
208 | 208 | </div> |
... | ... | @@ -275,7 +275,7 @@ |
275 | 275 | </div> |
276 | 276 | <div class="row"> |
277 | 277 | <div class="col-md-12 col-xs-12" style="text-align:center;margin-top: 20px;margin-bottom: -35px;"> |
278 | - <a href='/object/index' class="button1 more-projects"><?= Yii::t('app', 'sect2_6') ?></a> | |
278 | + <a href='<?=Url::toRoute("object/index")?>' class="button1 more-projects"><?= Yii::t('app', 'sect2_6') ?></a> | |
279 | 279 | </div> |
280 | 280 | </div> |
281 | 281 | </div> | ... | ... |
frontend/views/site/legal.php
... | ... | @@ -45,7 +45,7 @@ $this->registerJs($js, View::POS_END); |
45 | 45 | <div class="row"> |
46 | 46 | <div class="col-md-12"> |
47 | 47 | <div class="heading"> |
48 | - <h2><?= Yii::t('app', 'title1') ?></h2> | |
48 | + <h1 class="h2"><?= Yii::t('app', 'title1') ?></h1> | |
49 | 49 | </div> |
50 | 50 | </div> |
51 | 51 | </div> |
... | ... | @@ -287,30 +287,30 @@ $this->registerJs($js, View::POS_END); |
287 | 287 | <div class="row showcase"> |
288 | 288 | <div class="col-md-3 col-sm-6"> |
289 | 289 | <div class="item"> |
290 | - <h4><span class="counter">58</span><br> | |
290 | + <div class="h4"><span class="counter">58</span><br> | |
291 | 291 | |
292 | - <?= Yii::t('app', 'sect22_1') ?></h4> | |
292 | + <?= Yii::t('app', 'sect22_1') ?></div> | |
293 | 293 | </div> |
294 | 294 | </div> |
295 | 295 | <div class="col-md-3 col-sm-6"> |
296 | 296 | <div class="item"> |
297 | - <h4><span class="counter">117</span><br> | |
297 | + <div class="h4"><span class="counter">117</span><br> | |
298 | 298 | |
299 | - <?= Yii::t('app', 'sect22_2') ?></h4> | |
299 | + <?= Yii::t('app', 'sect22_2') ?></div> | |
300 | 300 | </div> |
301 | 301 | </div> |
302 | 302 | <div class="col-md-3 col-sm-6"> |
303 | 303 | <div class="item"> |
304 | - <h4><span class="counter">193</span><br> | |
304 | + <div class="h4"><span class="counter">193</span><br> | |
305 | 305 | |
306 | - <?= Yii::t('app', 'sect22_3') ?></h4> | |
306 | + <?= Yii::t('app', 'sect22_3') ?></div> | |
307 | 307 | </div> |
308 | 308 | </div> |
309 | 309 | <div class="col-md-3 col-sm-6"> |
310 | 310 | <div class="item"> |
311 | - <h4><span class="counter">303</span><br> | |
311 | + <div class="h4"><span class="counter">303</span><br> | |
312 | 312 | |
313 | - <?= Yii::t('app', 'sect22_4') ?></h4> | |
313 | + <?= Yii::t('app', 'sect22_4') ?></div> | |
314 | 314 | </div> |
315 | 315 | </div> |
316 | 316 | </div> |
... | ... | @@ -330,21 +330,21 @@ $this->registerJs($js, View::POS_END); |
330 | 330 | <div class="col-md-4"> |
331 | 331 | <div class="box-simple"> |
332 | 332 | <div class="icon icon_en" id="icon01"></div> |
333 | - <h3><?= Yii::t('app', 'sect3_1') ?></h3> | |
333 | + <div class="h3"><?= Yii::t('app', 'sect3_1') ?></div> | |
334 | 334 | <p><?= Yii::t('app', 'sect3_2') ?></p> |
335 | 335 | </div> |
336 | 336 | </div> |
337 | 337 | <div class="col-md-4"> |
338 | 338 | <div class="box-simple"> |
339 | 339 | <div class="icon icon_en" id="icon02"></div> |
340 | - <h3><?= Yii::t('app', 'sect3_3') ?></h3> | |
340 | + <div class="h3"><?= Yii::t('app', 'sect3_3') ?></div> | |
341 | 341 | <p><?= Yii::t('app', 'sect3_4') ?></p> |
342 | 342 | </div> |
343 | 343 | </div> |
344 | 344 | <div class="col-md-4"> |
345 | 345 | <div class="box-simple"> |
346 | 346 | <div class="icon icon_en" id="icon03"></div> |
347 | - <h3><?= Yii::t('app', 'sect3_5') ?></h3> | |
347 | + <div class="h3"><?= Yii::t('app', 'sect3_5') ?></div> | |
348 | 348 | <p><?= Yii::t('app', 'sect3_6') ?></p> |
349 | 349 | </div> |
350 | 350 | </div> |
... | ... | @@ -354,21 +354,21 @@ $this->registerJs($js, View::POS_END); |
354 | 354 | <div class="col-md-4"> |
355 | 355 | <div class="box-simple"> |
356 | 356 | <div class="icon icon_en" id="icon04"></div> |
357 | - <h3><?= Yii::t('app', 'sect3_7') ?></h3> | |
357 | + <div class="h3"><?= Yii::t('app', 'sect3_7') ?></div> | |
358 | 358 | <p><?= Yii::t('app', 'sect3_8') ?></p> |
359 | 359 | </div> |
360 | 360 | </div> |
361 | 361 | <div class="col-md-4"> |
362 | 362 | <div class="box-simple"> |
363 | 363 | <div class="icon icon_en" id="icon05"></div> |
364 | - <h3><?= Yii::t('app', 'sect3_9') ?></h3> | |
364 | + <div class="h3"><?= Yii::t('app', 'sect3_9') ?></div> | |
365 | 365 | <p><?= Yii::t('app', 'sect3_10') ?></p> |
366 | 366 | </div> |
367 | 367 | </div> |
368 | 368 | <div class="col-md-4"> |
369 | 369 | <div class="box-simple"> |
370 | 370 | <div class="icon icon_en" id="icon06"></div> |
371 | - <h3><?= Yii::t('app', 'sect3_11') ?></h3> | |
371 | + <div class="h3"><?= Yii::t('app', 'sect3_11') ?></div> | |
372 | 372 | <p><?= Yii::t('app', 'sect3_12') ?></p> |
373 | 373 | </div> |
374 | 374 | </div> |
... | ... | @@ -378,21 +378,21 @@ $this->registerJs($js, View::POS_END); |
378 | 378 | <div class="col-md-4"> |
379 | 379 | <div class="box-simple"> |
380 | 380 | <div class="icon icon_en" id="icon07"></div> |
381 | - <h3><?= Yii::t('app', 'sect3_13') ?></h3> | |
381 | + <div class="h3"><?= Yii::t('app', 'sect3_13') ?></div> | |
382 | 382 | <p><?= Yii::t('app', 'sect3_14') ?></p> |
383 | 383 | </div> |
384 | 384 | </div> |
385 | 385 | <div class="col-md-4"> |
386 | 386 | <div class="box-simple"> |
387 | 387 | <div class="icon icon_en" id="icon08"></div> |
388 | - <h3><?= Yii::t('app', 'sect3_15') ?></h3> | |
388 | + <div class="h3"><?= Yii::t('app', 'sect3_15') ?></div> | |
389 | 389 | <p><?= Yii::t('app', 'sect3_16') ?></p> |
390 | 390 | </div> |
391 | 391 | </div> |
392 | 392 | <div class="col-md-4"> |
393 | 393 | <div class="box-simple"> |
394 | 394 | <div class="icon icon_en" id="icon09"></div> |
395 | - <h3><?= Yii::t('app', 'sect3_17') ?></h3> | |
395 | + <div class="h3"><?= Yii::t('app', 'sect3_17') ?></div> | |
396 | 396 | <p><?= Yii::t('app', 'sect3_18') ?></p> |
397 | 397 | </div> |
398 | 398 | </div> |
... | ... | @@ -402,7 +402,7 @@ $this->registerJs($js, View::POS_END); |
402 | 402 | <div class="col-md-4 col-md-offset-4"> |
403 | 403 | <div class="box-simple"> |
404 | 404 | <div class="icon icon_en" id="icon10"></div> |
405 | - <h3><?= Yii::t('app', 'sect3_19') ?></h3> | |
405 | + <div class="h3"><?= Yii::t('app', 'sect3_19') ?></div> | |
406 | 406 | <p><?= Yii::t('app', 'sect3_20') ?></p> |
407 | 407 | </div> |
408 | 408 | </div> | ... | ... |
frontend/web/css/main.css
... | ... | @@ -99,11 +99,13 @@ body{position:relative;} |
99 | 99 | .blue-fon, .background-kben{background-color: #00a1e9;background-image:url('/img/slide_two_fon.png');color:#fff;} |
100 | 100 | .blue-fon .icon, .background-kben .icon{position: relative;width:120px;height:120px;border:none;} |
101 | 101 | .blue-fon .icon img, .background-kben .icon img {width: 100%;margin: 0;padding: 0;} |
102 | -.blue-fon .box-simple h3, .background-kben .box-simple h3 {color: #ffd800;margin-bottom: 5px;} | |
102 | +.blue-fon .box-simple h3, .background-kben .box-simple h3, .blue-fon .box-simple .h3, .background-kben .box-simple .h3 {color: #ffd800;margin-bottom: 5px;} | |
103 | 103 | .blue-fon .box-simple p, .background-kben .box-simple p {color: #fff;} |
104 | 104 | .why-us .line_why {position: absolute;top: 50px;right: -83px;opacity: 0.3;} |
105 | 105 | .blue-fon .heading h1, .blue-fon .heading h2, .blue-fon .heading h3, .blue-fon .heading h4, .blue-fon .heading h5, |
106 | -.background-kben .heading h1, .background-kben .heading h2, .background-kben .heading h3, .background-kben .heading h4, .background-kben .heading h5{color:#fff;border-color: #ffd800!important;} | |
106 | +.blue-fon .heading .h1, .blue-fon .heading .h2, .blue-fon .heading .h3, .blue-fon .heading .h4, .blue-fon .heading .h5, | |
107 | +.background-kben .heading h1, .background-kben .heading h2, .background-kben .heading h3, .background-kben .heading h4, .background-kben .heading h5, | |
108 | +.background-kben .heading .h1, .background-kben .heading .h2, .background-kben .heading .h3, .background-kben .heading .h4, .background-kben .heading .h5{color:#fff;border-color: #ffd800!important;} | |
107 | 109 | a.sqre_btn { |
108 | 110 | padding: 0; |
109 | 111 | margin: 0; |
... | ... | @@ -173,7 +175,8 @@ section.blue-fon {padding-top: 25px;} |
173 | 175 | } |
174 | 176 | .get_station_center {text-align: center;margin-top: 30px;margin-bottom: -15px;} |
175 | 177 | .border5 {border-radius: 5px;} |
176 | -.card1 .heading.text-left h2 {margin-top: 0px;} | |
178 | +.card1 .heading.text-left h2, | |
179 | +.card1 .heading.text-left .h2 {margin-top: 0px;} | |
177 | 180 | .bigtext {display: table-caption;} |
178 | 181 | .smi_left .video {height: 422px;} |
179 | 182 | .blue_arrow { |
... | ... | @@ -255,7 +258,7 @@ section.blue-fon {padding-top: 25px;} |
255 | 258 | justify-content: center; |
256 | 259 | } |
257 | 260 | .small-logo-center{margin: 10px 0 -10px;} |
258 | -.showcase .item h4 {color: #ffffff;} | |
261 | +.showcase .item h4, .showcase .item .h4 {color: #ffffff;} | |
259 | 262 | #video-bg{ |
260 | 263 | position: relative; |
261 | 264 | top: 0; |
... | ... | @@ -366,10 +369,13 @@ section.bar.background-gray.steps-pre:before { |
366 | 369 | background: #eeeeee; |
367 | 370 | z-index: 1; |
368 | 371 | } |
369 | -.steps-pre h2,.steps-pre div{margin: 4px 0;font-size: 42px;} | |
372 | +.steps-pre h2,.steps-pre div, | |
373 | +.steps-pre .h2{margin: 4px 0;} | |
374 | +.steps-pre div{margin:4px auto;font-weight:bold;} | |
370 | 375 | .individ_main{font-size: 30px;} |
371 | 376 | #get-it {padding: 30px 0 10px;background-color:#0080ca;} |
372 | -#main-page .blue-fon .heading h2{border:none;} | |
377 | +#main-page .blue-fon .heading h2, | |
378 | +#main-page .blue-fon .heading .h2{border:none;} | |
373 | 379 | #main-page .row.portfolio{display: flex;flex-wrap: wrap;} |
374 | 380 | .main-slider .carousel-inner, .main-slider .carousel-inner > .item {height:100%;width:100%;position:relative;} |
375 | 381 | .main-slider .img-responsive, .thumbnail > img, .main-slider .thumbnail a > img, .carousel-inner > .item > img, .main-slider .carousel-inner > .item > a > img { |
... | ... | @@ -493,7 +499,8 @@ section.bar.background-gray.steps-pre:before { |
493 | 499 | |
494 | 500 | /*heading breadcrumbs blue fon*/ |
495 | 501 | #heading-breadcrumbs{background-color: #0080ca;background-image: url(/img/slide_two_fon.png);} |
496 | -#heading-breadcrumbs h1{color: #fdfdfd;} | |
502 | +#heading-breadcrumbs h1, | |
503 | +#heading-breadcrumbs .h1{color: #fdfdfd;} | |
497 | 504 | #heading-breadcrumbs .breadcrumb > .active {color: #d0d0d0;font-weight: bold;} |
498 | 505 | #heading-breadcrumbs .breadcrumb > li + li:before {color: #ececec;} |
499 | 506 | #heading-breadcrumbs .breadcrumb li a {color: #efefef;} |
... | ... | @@ -1015,11 +1022,13 @@ p.error-text{ |
1015 | 1022 | .nav.navbar-nav.navbar-right{margin: 0;float: none!important;} |
1016 | 1023 | } |
1017 | 1024 | @media(max-width:520px){ |
1018 | - #heading-breadcrumbs h1 {font-size: 5.78vw;} | |
1025 | + #heading-breadcrumbs h1, | |
1026 | + #heading-breadcrumbs .h1 {font-size: 5.78vw;} | |
1019 | 1027 | #video-bg .arrow_bottom a{font-size:60px;} |
1020 | 1028 | } |
1021 | 1029 | @media(min-width:501px){ |
1022 | - .bigtext#header3 h2{width: 161%;} | |
1030 | + .bigtext#header3 h2, | |
1031 | + .bigtext#header3 .h2{width: 161%;} | |
1023 | 1032 | } |
1024 | 1033 | @media(max-width:500px){ |
1025 | 1034 | .form-comm-wr .form-group{width:100%;} | ... | ... |
frontend/web/css/style.blue.css
... | ... | @@ -120,7 +120,12 @@ div.section { |
120 | 120 | .heading h2, |
121 | 121 | .heading h3, |
122 | 122 | .heading h4, |
123 | -.heading h5 { | |
123 | +.heading h5, | |
124 | +.heading .h1, | |
125 | +.heading .h2, | |
126 | +.heading .h3, | |
127 | +.heading .h4, | |
128 | +.heading .h5 { | |
124 | 129 | display: inline-block; |
125 | 130 | border-bottom: solid 5px #467fbf; |
126 | 131 | line-height: 1.1; |
... | ... | @@ -135,7 +140,12 @@ div.section { |
135 | 140 | .heading h2 i.fa, |
136 | 141 | .heading h3 i.fa, |
137 | 142 | .heading h4 i.fa, |
138 | -.heading h5 i.fa { | |
143 | +.heading h5 i.fa, | |
144 | +.heading .h1 i.fa, | |
145 | +.heading .h2 i.fa, | |
146 | +.heading .h3 i.fa, | |
147 | +.heading .h4 i.fa, | |
148 | +.heading .h5 i.fa { | |
139 | 149 | display: inline-block; |
140 | 150 | background: #467fbf; |
141 | 151 | width: 30px; |
... | ... | @@ -191,7 +201,10 @@ ul.list-style-none { |
191 | 201 | |
192 | 202 | #text-page h1, |
193 | 203 | #text-page h2, |
194 | -#text-page h3 { | |
204 | +#text-page h3, | |
205 | +#text-page .h1, | |
206 | +#text-page .h2, | |
207 | +#text-page .h3 { | |
195 | 208 | font-weight: 700; |
196 | 209 | } |
197 | 210 | |
... | ... | @@ -201,7 +214,8 @@ ul.list-style-none { |
201 | 214 | margin-bottom: 100px; |
202 | 215 | } |
203 | 216 | |
204 | -#error-page h4 { | |
217 | +#error-page h4, | |
218 | +#error-page .h4 { | |
205 | 219 | margin-bottom: 40px; |
206 | 220 | } |
207 | 221 | |
... | ... | @@ -213,14 +227,16 @@ ul.list-style-none { |
213 | 227 | text-align: center; |
214 | 228 | } |
215 | 229 | |
216 | -.pages-listing .item h3 { | |
230 | +.pages-listing .item h3, | |
231 | +.pages-listing .item .h3 { | |
217 | 232 | font-size: 18px; |
218 | 233 | text-transform: uppercase; |
219 | 234 | margin-bottom: 20px; |
220 | 235 | letter-spacing: 0.08em; |
221 | 236 | } |
222 | 237 | |
223 | -.pages-listing .item h3 a { | |
238 | +.pages-listing .item h3 a, | |
239 | +.pages-listing .item .h3 a { | |
224 | 240 | color: #555555; |
225 | 241 | } |
226 | 242 | |
... | ... | @@ -457,7 +473,8 @@ ul.list-style-none { |
457 | 473 | } |
458 | 474 | } |
459 | 475 | |
460 | -.navbar .yamm-content h3 { | |
476 | +.navbar .yamm-content h3, | |
477 | +.navbar .yamm-content .h3 { | |
461 | 478 | font-size: 18px; |
462 | 479 | text-transform: uppercase; |
463 | 480 | padding-bottom: 10px; |
... | ... | @@ -467,12 +484,14 @@ ul.list-style-none { |
467 | 484 | } |
468 | 485 | |
469 | 486 | @media (max-width: 767px) { |
470 | - .navbar .yamm-content h3 { | |
487 | + .navbar .yamm-content h3, | |
488 | + .navbar .yamm-content .h3 { | |
471 | 489 | font-size: 14px; |
472 | 490 | } |
473 | 491 | } |
474 | 492 | |
475 | -.navbar .yamm-content h5 { | |
493 | +.navbar .yamm-content h5, | |
494 | +.navbar .yamm-content .h5 { | |
476 | 495 | text-transform: uppercase; |
477 | 496 | padding-bottom: 10px; |
478 | 497 | border-bottom: dotted 1px #555555; |
... | ... | @@ -599,7 +618,8 @@ body.boxed .navbar-affixed-top.affix { |
599 | 618 | overflow: hidden; |
600 | 619 | } |
601 | 620 | |
602 | -#login-modal .modal-header h4 { | |
621 | +#login-modal .modal-header h4, | |
622 | +#login-modal .modal-header .h4 { | |
603 | 623 | text-transform: uppercase; |
604 | 624 | } |
605 | 625 | |
... | ... | @@ -878,7 +898,8 @@ fieldset[disabled] .btn-template-primary.active { |
878 | 898 | height: 100%; |
879 | 899 | } |
880 | 900 | |
881 | -#intro .item h1 { | |
901 | +#intro .item h1, | |
902 | +#intro .item .h1 { | |
882 | 903 | text-transform: uppercase; |
883 | 904 | font-size: 50px; |
884 | 905 | color: #fff; |
... | ... | @@ -887,24 +908,28 @@ fieldset[disabled] .btn-template-primary.active { |
887 | 908 | } |
888 | 909 | |
889 | 910 | @media (max-width: 991px) { |
911 | + #intro .item .h1, | |
890 | 912 | #intro .item h1 { |
891 | 913 | font-size: 40px; |
892 | 914 | } |
893 | 915 | } |
894 | 916 | |
895 | 917 | @media (max-width: 767px) { |
918 | + #intro .item .h1, | |
896 | 919 | #intro .item h1 { |
897 | 920 | font-size: 25px; |
898 | 921 | } |
899 | 922 | } |
900 | 923 | |
901 | -#intro .item h3 { | |
924 | +#intro .item h3, | |
925 | +#intro .item .h3 { | |
902 | 926 | color: #fff; |
903 | 927 | margin-bottom: 40px; |
904 | 928 | } |
905 | 929 | |
906 | 930 | @media (max-width: 767px) { |
907 | - #intro .item h3 { | |
931 | + #intro .item h3, | |
932 | + #intro .item .h3 { | |
908 | 933 | font-size: 15px; |
909 | 934 | margin-bottom: 20px; |
910 | 935 | } |
... | ... | @@ -958,6 +983,9 @@ fieldset[disabled] .btn-template-primary.active { |
958 | 983 | .jumbotron h1, |
959 | 984 | .jumbotron h2, |
960 | 985 | .jumbotron h3, |
986 | +.jumbotron .h1, | |
987 | +.jumbotron .h2, | |
988 | +.jumbotron .h3, | |
961 | 989 | .jumbotron p, |
962 | 990 | .jumbotron ul { |
963 | 991 | color: #fff; |
... | ... | @@ -965,7 +993,10 @@ fieldset[disabled] .btn-template-primary.active { |
965 | 993 | |
966 | 994 | .jumbotron h1, |
967 | 995 | .jumbotron h2, |
968 | -.jumbotron h3 { | |
996 | +.jumbotron h3, | |
997 | +.jumbotron .h1, | |
998 | +.jumbotron .h2, | |
999 | +.jumbotron .h3 { | |
969 | 1000 | color: #ffffff; |
970 | 1001 | text-transform: uppercase; |
971 | 1002 | letter-spacing: 0.08em; |
... | ... | @@ -1011,7 +1042,8 @@ fieldset[disabled] .btn-template-primary.active { |
1011 | 1042 | } |
1012 | 1043 | } |
1013 | 1044 | |
1014 | -#categoryMenu h3 { | |
1045 | +#categoryMenu h3, | |
1046 | +#categoryMenu .h3 { | |
1015 | 1047 | padding: 20px; |
1016 | 1048 | background: #f7f7f7; |
1017 | 1049 | margin: 0; |
... | ... | @@ -1020,7 +1052,8 @@ fieldset[disabled] .btn-template-primary.active { |
1020 | 1052 | letter-spacing: 0.08em; |
1021 | 1053 | } |
1022 | 1054 | |
1023 | -.panel.sidebar-menu h3 { | |
1055 | +.panel.sidebar-menu h3, | |
1056 | +.panel.sidebar-menu .h3 { | |
1024 | 1057 | padding: 5px 0; |
1025 | 1058 | margin: 0; |
1026 | 1059 | } |
... | ... | @@ -1046,7 +1079,12 @@ fieldset[disabled] .btn-template-primary.active { |
1046 | 1079 | .panel.sidebar-menu .panel-heading h2, |
1047 | 1080 | .panel.sidebar-menu .panel-heading h3, |
1048 | 1081 | .panel.sidebar-menu .panel-heading h4, |
1049 | -.panel.sidebar-menu .panel-heading h5 { | |
1082 | +.panel.sidebar-menu .panel-heading h5, | |
1083 | +.panel.sidebar-menu .panel-heading .h1, | |
1084 | +.panel.sidebar-menu .panel-heading .h2, | |
1085 | +.panel.sidebar-menu .panel-heading .h3, | |
1086 | +.panel.sidebar-menu .panel-heading .h4, | |
1087 | +.panel.sidebar-menu .panel-heading .h5 { | |
1050 | 1088 | display: inline-block; |
1051 | 1089 | border-bottom: solid 5px #467fbf; |
1052 | 1090 | line-height: 1.1; |
... | ... | @@ -1215,12 +1253,16 @@ fieldset[disabled] .btn-template-primary.active { |
1215 | 1253 | } |
1216 | 1254 | |
1217 | 1255 | .panel.sidebar-menu ul.popular li h5, |
1218 | -.panel.sidebar-menu ul.recent li h5 { | |
1256 | +.panel.sidebar-menu ul.recent li h5, | |
1257 | +.panel.sidebar-menu ul.popular li .h5, | |
1258 | +.panel.sidebar-menu ul.recent li .h5 { | |
1219 | 1259 | margin: 0 0 10px; |
1220 | 1260 | } |
1221 | 1261 | |
1222 | 1262 | .panel.sidebar-menu ul.popular li h5 a, |
1223 | -.panel.sidebar-menu ul.recent li h5 a { | |
1263 | +.panel.sidebar-menu ul.recent li h5 a, | |
1264 | +.panel.sidebar-menu ul.popular li .h5 a, | |
1265 | +.panel.sidebar-menu ul.recent li .h5 a { | |
1224 | 1266 | font-weight: normal; |
1225 | 1267 | } |
1226 | 1268 | |
... | ... | @@ -1402,12 +1444,16 @@ fieldset[disabled] .btn-template-primary.active { |
1402 | 1444 | .home-carousel h1, |
1403 | 1445 | .home-carousel h2, |
1404 | 1446 | .home-carousel h3, |
1447 | +.home-carousel .h1, | |
1448 | +.home-carousel .h2, | |
1449 | +.home-carousel .h3, | |
1405 | 1450 | .home-carousel p, |
1406 | 1451 | .home-carousel ul { |
1407 | 1452 | color: #fff; |
1408 | 1453 | } |
1409 | 1454 | |
1410 | -.home-carousel h1 { | |
1455 | +.home-carousel h1, | |
1456 | +.home-carousel .h1 { | |
1411 | 1457 | font-weight: 700; |
1412 | 1458 | text-transform: uppercase; |
1413 | 1459 | font-size: 46px; |
... | ... | @@ -1415,12 +1461,14 @@ fieldset[disabled] .btn-template-primary.active { |
1415 | 1461 | } |
1416 | 1462 | |
1417 | 1463 | @media (max-width: 991px) { |
1418 | - .home-carousel h1 { | |
1464 | + .home-carousel h1, | |
1465 | + .home-carousel .h1 { | |
1419 | 1466 | font-size: 36px; |
1420 | 1467 | } |
1421 | 1468 | } |
1422 | 1469 | |
1423 | -.home-carousel h2 { | |
1470 | +.home-carousel h2, | |
1471 | +.home-carousel .h2 { | |
1424 | 1472 | font-weight: 700; |
1425 | 1473 | text-transform: uppercase; |
1426 | 1474 | font-size: 40px; |
... | ... | @@ -1547,7 +1595,8 @@ fieldset[disabled] .btn-template-primary.active { |
1547 | 1595 | text-align: right; |
1548 | 1596 | } |
1549 | 1597 | |
1550 | -.testimonials .item .testimonial .name-picture h5 { | |
1598 | +.testimonials .item .testimonial .name-picture h5, | |
1599 | +.testimonials .item .testimonial .name-picture .h5 { | |
1551 | 1600 | font-size: 14px; |
1552 | 1601 | text-transform: uppercase; |
1553 | 1602 | letter-spacing: 0.08em; |
... | ... | @@ -1571,14 +1620,16 @@ fieldset[disabled] .btn-template-primary.active { |
1571 | 1620 | margin-bottom: 40px; |
1572 | 1621 | } |
1573 | 1622 | |
1574 | -.team-member h3 { | |
1623 | +.team-member h3, | |
1624 | +.team-member .h3 { | |
1575 | 1625 | font-size: 18px; |
1576 | 1626 | text-transform: uppercase; |
1577 | 1627 | margin-bottom: 5px; |
1578 | 1628 | letter-spacing: 0.08em; |
1579 | 1629 | } |
1580 | 1630 | |
1581 | -.team-member h3 a { | |
1631 | +.team-member h3 a, | |
1632 | +.team-member .h3 a { | |
1582 | 1633 | color: #555555; |
1583 | 1634 | } |
1584 | 1635 | |
... | ... | @@ -1705,7 +1756,8 @@ fieldset[disabled] .btn-template-primary.active { |
1705 | 1756 | transition: all 0.2s ease-out; |
1706 | 1757 | } |
1707 | 1758 | |
1708 | -.box-simple h3 { | |
1759 | +.box-simple h3, | |
1760 | +.box-simple .h3 { | |
1709 | 1761 | font-weight: normal; |
1710 | 1762 | font-size: 18px; |
1711 | 1763 | text-transform: uppercase; |
... | ... | @@ -1715,7 +1767,8 @@ fieldset[disabled] .btn-template-primary.active { |
1715 | 1767 | letter-spacing: 0.08em; |
1716 | 1768 | } |
1717 | 1769 | |
1718 | -.box-simple h3 a { | |
1770 | +.box-simple h3 a, | |
1771 | +.box-simple .h3 a { | |
1719 | 1772 | color: #555555; |
1720 | 1773 | } |
1721 | 1774 | |
... | ... | @@ -1761,11 +1814,13 @@ fieldset[disabled] .btn-template-primary.active { |
1761 | 1814 | font-size: 70px; |
1762 | 1815 | } |
1763 | 1816 | |
1764 | -.box-simple.box-dark h3 { | |
1817 | +.box-simple.box-dark h3, | |
1818 | +.box-simple.box-dark .h3 { | |
1765 | 1819 | color: #fff; |
1766 | 1820 | } |
1767 | 1821 | |
1768 | -.box-simple.box-dark h3 a { | |
1822 | +.box-simple.box-dark h3 a, | |
1823 | +.box-simple.box-dark .h3 a { | |
1769 | 1824 | color: #fff; |
1770 | 1825 | } |
1771 | 1826 | |
... | ... | @@ -1807,14 +1862,16 @@ fieldset[disabled] .btn-template-primary.active { |
1807 | 1862 | padding: 0 20px; |
1808 | 1863 | } |
1809 | 1864 | |
1810 | -.box-image .name h3 { | |
1865 | +.box-image .name h3, | |
1866 | +.box-image .name .h3 { | |
1811 | 1867 | color: #fff; |
1812 | 1868 | text-transform: uppercase; |
1813 | 1869 | font-size: 18px; |
1814 | 1870 | letter-spacing: 0.08em; |
1815 | 1871 | } |
1816 | 1872 | |
1817 | -.box-image .name h3 a { | |
1873 | +.box-image .name h3 a, | |
1874 | +.box-image .name .h3 a { | |
1818 | 1875 | color: #fff; |
1819 | 1876 | text-decoration: none; |
1820 | 1877 | } |
... | ... | @@ -1895,14 +1952,16 @@ fieldset[disabled] .btn-template-primary.active { |
1895 | 1952 | padding: 0 20px; |
1896 | 1953 | } |
1897 | 1954 | |
1898 | -.box-image-text .top .name h3 { | |
1955 | +.box-image-text .top .name h3, | |
1956 | +.box-image-text .top .name .h3 { | |
1899 | 1957 | color: #fff; |
1900 | 1958 | text-transform: uppercase; |
1901 | 1959 | font-size: 18px; |
1902 | 1960 | letter-spacing: 0.08em; |
1903 | 1961 | } |
1904 | 1962 | |
1905 | -.box-image-text .top .name h3 a { | |
1963 | +.box-image-text .top .name h3 a, | |
1964 | +.box-image-text .top .name .h3 a { | |
1906 | 1965 | color: #fff; |
1907 | 1966 | text-decoration: none; |
1908 | 1967 | } |
... | ... | @@ -1924,7 +1983,9 @@ fieldset[disabled] .btn-template-primary.active { |
1924 | 1983 | } |
1925 | 1984 | |
1926 | 1985 | .box-image-text .content h3, |
1927 | -.box-image-text .content h4 { | |
1986 | +.box-image-text .content h4, | |
1987 | +.box-image-text .content .h3, | |
1988 | +.box-image-text .content .h4 { | |
1928 | 1989 | text-transform: uppercase; |
1929 | 1990 | line-height: 1.5; |
1930 | 1991 | color: #555555; |
... | ... | @@ -2046,7 +2107,8 @@ fieldset[disabled] .btn-template-primary.active { |
2046 | 2107 | margin-bottom: 0; |
2047 | 2108 | } |
2048 | 2109 | |
2049 | -#heading-breadcrumbs h1 { | |
2110 | +#heading-breadcrumbs h1, | |
2111 | +#heading-breadcrumbs .h1 { | |
2050 | 2112 | color: #333333; |
2051 | 2113 | text-transform: uppercase; |
2052 | 2114 | font-size: 30px; |
... | ... | @@ -2055,7 +2117,8 @@ fieldset[disabled] .btn-template-primary.active { |
2055 | 2117 | } |
2056 | 2118 | |
2057 | 2119 | @media (max-width: 991px) { |
2058 | - #heading-breadcrumbs h1 { | |
2120 | + #heading-breadcrumbs h1, | |
2121 | + #heading-breadcrumbs .h1 { | |
2059 | 2122 | text-align: center; |
2060 | 2123 | } |
2061 | 2124 | } |
... | ... | @@ -2107,6 +2170,12 @@ fieldset[disabled] .btn-template-primary.active { |
2107 | 2170 | .bar.color-white h4, |
2108 | 2171 | .bar.color-white h5, |
2109 | 2172 | .bar.color-white h6, |
2173 | +.bar.color-white .h1, | |
2174 | +.bar.color-white .h2, | |
2175 | +.bar.color-white .h3, | |
2176 | +.bar.color-white .h4, | |
2177 | +.bar.color-white .h5, | |
2178 | +.bar.color-white .h6, | |
2110 | 2179 | .bar.color-white p { |
2111 | 2180 | color: #fff; |
2112 | 2181 | } |
... | ... | @@ -2144,7 +2213,8 @@ fieldset[disabled] .btn-template-primary.active { |
2144 | 2213 | margin: 0 -15px; |
2145 | 2214 | } |
2146 | 2215 | |
2147 | -.portfolio-project .project-more h4 { | |
2216 | +.portfolio-project .project-more h4, | |
2217 | +.portfolio-project .project-more .h4 { | |
2148 | 2218 | color: #555555; |
2149 | 2219 | text-transform: uppercase; |
2150 | 2220 | margin-bottom: 0; |
... | ... | @@ -2209,7 +2279,8 @@ fieldset[disabled] .btn-template-primary.active { |
2209 | 2279 | border: solid 1px #555555; |
2210 | 2280 | } |
2211 | 2281 | |
2212 | -.showcase .item h4 { | |
2282 | +.showcase .item h4, | |
2283 | +.showcase .item .h4 { | |
2213 | 2284 | color: #555555; |
2214 | 2285 | text-transform: uppercase; |
2215 | 2286 | letter-spacing: 0.08em; |
... | ... | @@ -2217,7 +2288,8 @@ fieldset[disabled] .btn-template-primary.active { |
2217 | 2288 | font-size: 16px; |
2218 | 2289 | } |
2219 | 2290 | |
2220 | -.showcase .item h4 span { | |
2291 | +.showcase .item h4 span, | |
2292 | +.showcase .item .h4 span { | |
2221 | 2293 | font-weight: bold; |
2222 | 2294 | font-size: 51px; |
2223 | 2295 | } |
... | ... | @@ -2239,7 +2311,8 @@ fieldset[disabled] .btn-template-primary.active { |
2239 | 2311 | background: #467fbf; |
2240 | 2312 | } |
2241 | 2313 | |
2242 | -.packages .package .package-header h5 { | |
2314 | +.packages .package .package-header h5, | |
2315 | +.packages .package .package-header .h5 { | |
2243 | 2316 | color: #fff; |
2244 | 2317 | text-transform: uppercase; |
2245 | 2318 | font-weight: bold; |
... | ... | @@ -2252,7 +2325,8 @@ fieldset[disabled] .btn-template-primary.active { |
2252 | 2325 | background: #eeeeee; |
2253 | 2326 | } |
2254 | 2327 | |
2255 | -.packages .package .package-header.light-gray h5 { | |
2328 | +.packages .package .package-header.light-gray h5, | |
2329 | +.packages .package .package-header.light-gray .h5 { | |
2256 | 2330 | color: #555555; |
2257 | 2331 | } |
2258 | 2332 | |
... | ... | @@ -2263,7 +2337,8 @@ fieldset[disabled] .btn-template-primary.active { |
2263 | 2337 | font-weight: 400; |
2264 | 2338 | } |
2265 | 2339 | |
2266 | -.packages .package .price h4 { | |
2340 | +.packages .package .price h4, | |
2341 | +.packages .package .price .h4 { | |
2267 | 2342 | display: inline; |
2268 | 2343 | font-size: 50px; |
2269 | 2344 | line-height: normal; |
... | ... | @@ -2308,7 +2383,8 @@ fieldset[disabled] .btn-template-primary.active { |
2308 | 2383 | height: 82px !important; |
2309 | 2384 | } |
2310 | 2385 | |
2311 | -.packages .best-value .package .package-header h5 { | |
2386 | +.packages .best-value .package .package-header h5, | |
2387 | +.packages .best-value .package .package-header .h5 { | |
2312 | 2388 | font-weight: bold; |
2313 | 2389 | line-height: 29px; |
2314 | 2390 | text-transform: uppercase; |
... | ... | @@ -2337,7 +2413,11 @@ fieldset[disabled] .btn-template-primary.active { |
2337 | 2413 | #blog-listing-big .post h2, |
2338 | 2414 | #blog-homepage .post h2, |
2339 | 2415 | #blog-listing-big .post h4, |
2340 | -#blog-homepage .post h4 { | |
2416 | +#blog-homepage .post h4, | |
2417 | +#blog-listing-big .post .h2, | |
2418 | +#blog-homepage .post .h2, | |
2419 | +#blog-listing-big .post .h4, | |
2420 | +#blog-homepage .post .h4 { | |
2341 | 2421 | text-transform: uppercase; |
2342 | 2422 | letter-spacing: 0.08em; |
2343 | 2423 | } |
... | ... | @@ -2345,14 +2425,22 @@ fieldset[disabled] .btn-template-primary.active { |
2345 | 2425 | #blog-listing-big .post h2 a, |
2346 | 2426 | #blog-homepage .post h2 a, |
2347 | 2427 | #blog-listing-big .post h4 a, |
2348 | -#blog-homepage .post h4 a { | |
2428 | +#blog-homepage .post h4 a, | |
2429 | +#blog-listing-big .post .h2 a, | |
2430 | +#blog-homepage .post .h2 a, | |
2431 | +#blog-listing-big .post .h4 a, | |
2432 | +#blog-homepage .post .h4 a { | |
2349 | 2433 | color: #555555; |
2350 | 2434 | } |
2351 | 2435 | |
2352 | 2436 | #blog-listing-big .post h2 a:hover, |
2353 | 2437 | #blog-homepage .post h2 a:hover, |
2354 | 2438 | #blog-listing-big .post h4 a:hover, |
2355 | -#blog-homepage .post h4 a:hover { | |
2439 | +#blog-homepage .post h4 a:hover, | |
2440 | +#blog-listing-big .post .h2 a:hover, | |
2441 | +#blog-homepage .post .h2 a:hover, | |
2442 | +#blog-listing-big .post .h4 a:hover, | |
2443 | +#blog-homepage .post .h4 a:hover { | |
2356 | 2444 | color: #467fbf; |
2357 | 2445 | } |
2358 | 2446 | |
... | ... | @@ -2426,18 +2514,21 @@ fieldset[disabled] .btn-template-primary.active { |
2426 | 2514 | margin-bottom: 60px; |
2427 | 2515 | } |
2428 | 2516 | |
2429 | -#blog-listing-medium .post h2 { | |
2517 | +#blog-listing-medium .post h2, | |
2518 | +#blog-listing-medium .post .h2 { | |
2430 | 2519 | text-transform: uppercase; |
2431 | 2520 | margin: 0 0 10px; |
2432 | 2521 | font-size: 24px; |
2433 | 2522 | letter-spacing: 0.08em; |
2434 | 2523 | } |
2435 | 2524 | |
2436 | -#blog-listing-medium .post h2 a { | |
2525 | +#blog-listing-medium .post h2 a, | |
2526 | +#blog-listing-medium .post .h2 a { | |
2437 | 2527 | color: #555555; |
2438 | 2528 | } |
2439 | 2529 | |
2440 | -#blog-listing-medium .post h2 a:hover { | |
2530 | +#blog-listing-medium .post h2 a:hover, | |
2531 | +#blog-listing-medium .post .h2 a:hover { | |
2441 | 2532 | color: #467fbf; |
2442 | 2533 | } |
2443 | 2534 | |
... | ... | @@ -2558,6 +2649,8 @@ fieldset[disabled] .btn-template-primary.active { |
2558 | 2649 | |
2559 | 2650 | #blog-homepage .post h2, |
2560 | 2651 | #blog-homepage .post h4, |
2652 | +#blog-homepage .post .h2, | |
2653 | +#blog-homepage .post .h4, | |
2561 | 2654 | #blog-homepage .post .author-category, |
2562 | 2655 | #blog-homepage .post .read-more { |
2563 | 2656 | text-align: center; |
... | ... | @@ -2642,7 +2735,9 @@ fieldset[disabled] .btn-template-primary.active { |
2642 | 2735 | } |
2643 | 2736 | |
2644 | 2737 | #blog-post #comments h4, |
2645 | -#blog-post #comment-form h4 { | |
2738 | +#blog-post #comment-form h4, | |
2739 | +#blog-post #comments .h4, | |
2740 | +#blog-post #comment-form .h4 { | |
2646 | 2741 | margin-bottom: 20px; |
2647 | 2742 | } |
2648 | 2743 | |
... | ... | @@ -2681,7 +2776,8 @@ fieldset[disabled] .btn-template-primary.active { |
2681 | 2776 | padding: 10px; |
2682 | 2777 | } |
2683 | 2778 | |
2684 | -.product .text h3 { | |
2779 | +.product .text h3, | |
2780 | +.product .text .h3 { | |
2685 | 2781 | font-size: 14px; |
2686 | 2782 | font-weight: 700; |
2687 | 2783 | height: 39.6px; |
... | ... | @@ -2689,11 +2785,13 @@ fieldset[disabled] .btn-template-primary.active { |
2689 | 2785 | letter-spacing: 0.08em; |
2690 | 2786 | } |
2691 | 2787 | |
2692 | -.product .text h3 a { | |
2788 | +.product .text h3 a, | |
2789 | +.product .text .h3 a { | |
2693 | 2790 | color: #555555; |
2694 | 2791 | } |
2695 | 2792 | |
2696 | -.product .text h3 a:hover { | |
2793 | +.product .text h3 a:hover, | |
2794 | +.product .text .h3 a:hover { | |
2697 | 2795 | text-decoration: none; |
2698 | 2796 | } |
2699 | 2797 | |
... | ... | @@ -2765,7 +2863,8 @@ fieldset[disabled] .btn-template-primary.active { |
2765 | 2863 | text-align: center; |
2766 | 2864 | } |
2767 | 2865 | |
2768 | -#productMain .sizes h3 { | |
2866 | +#productMain .sizes h3, | |
2867 | +#productMain .sizes .h3 { | |
2769 | 2868 | font-weight: 700; |
2770 | 2869 | letter-spacing: 0.08em; |
2771 | 2870 | text-transform: uppercase; |
... | ... | @@ -2815,7 +2914,8 @@ fieldset[disabled] .btn-template-primary.active { |
2815 | 2914 | text-align: center; |
2816 | 2915 | } |
2817 | 2916 | |
2818 | -#product-social h4 { | |
2917 | +#product-social h4, | |
2918 | +#product-social .h4 { | |
2819 | 2919 | font-weight: 300; |
2820 | 2920 | margin-bottom: 10px; |
2821 | 2921 | } |
... | ... | @@ -2926,7 +3026,9 @@ fieldset[disabled] .btn-template-primary.active { |
2926 | 3026 | } |
2927 | 3027 | |
2928 | 3028 | .shipping-method h4, |
2929 | -.payment-method h4 { | |
3029 | +.payment-method h4, | |
3030 | +.shipping-method .h4, | |
3031 | +.payment-method .h4 { | |
2930 | 3032 | text-transform: uppercase; |
2931 | 3033 | letter-spacing: 0.08em; |
2932 | 3034 | } |
... | ... | @@ -2967,7 +3069,13 @@ fieldset[disabled] .btn-template-primary.active { |
2967 | 3069 | #get-it h3, |
2968 | 3070 | #get-it h4, |
2969 | 3071 | #get-it h5, |
2970 | -#get-it h6 { | |
3072 | +#get-it h6, | |
3073 | +#get-it .h1, | |
3074 | +#get-it .h2, | |
3075 | +#get-it .h3, | |
3076 | +#get-it .h4, | |
3077 | +#get-it .h5, | |
3078 | +#get-it .h6 { | |
2971 | 3079 | color: #fff; |
2972 | 3080 | text-transform: uppercase; |
2973 | 3081 | letter-spacing: 0.08em; |
... | ... | @@ -2989,11 +3097,18 @@ fieldset[disabled] .btn-template-primary.active { |
2989 | 3097 | #footer h3, |
2990 | 3098 | #footer h4, |
2991 | 3099 | #footer h5, |
2992 | -#footer h6 { | |
3100 | +#footer h6, | |
3101 | +#footer .h1, | |
3102 | +#footer .h2, | |
3103 | +#footer .h3, | |
3104 | +#footer .h4, | |
3105 | +#footer .h5, | |
3106 | +#footer .h6 { | |
2993 | 3107 | color: #eeeeee; |
2994 | 3108 | } |
2995 | 3109 | |
2996 | -#footer h4 { | |
3110 | +#footer h4, | |
3111 | +#footer .h4 { | |
2997 | 3112 | font-size: 14px; |
2998 | 3113 | font-weight: 800; |
2999 | 3114 | text-transform: uppercase; |
... | ... | @@ -3062,14 +3177,16 @@ fieldset[disabled] .btn-template-primary.active { |
3062 | 3177 | vertical-align: middle; |
3063 | 3178 | } |
3064 | 3179 | |
3065 | -#footer .blog-entries .item .name h5 { | |
3180 | +#footer .blog-entries .item .name h5, | |
3181 | +#footer .blog-entries .item .name .h5 { | |
3066 | 3182 | margin: 0; |
3067 | 3183 | text-transform: uppercase; |
3068 | 3184 | letter-spacing: 0.08em; |
3069 | 3185 | font-size: 12px; |
3070 | 3186 | } |
3071 | 3187 | |
3072 | -#footer .blog-entries .item .name h5 a { | |
3188 | +#footer .blog-entries .item .name h5 a, | |
3189 | +#footer .blog-entries .item .name .h5 a { | |
3073 | 3190 | color: #eeeeee; |
3074 | 3191 | } |
3075 | 3192 | ... | ... |
frontend/web/css/style.default.css
... | ... | @@ -120,7 +120,12 @@ div.section { |
120 | 120 | .heading h2, |
121 | 121 | .heading h3, |
122 | 122 | .heading h4, |
123 | -.heading h5 { | |
123 | +.heading h5, | |
124 | +.heading .h1, | |
125 | +.heading .h2, | |
126 | +.heading .h3, | |
127 | +.heading .h4, | |
128 | +.heading .h5 { | |
124 | 129 | display: inline-block; |
125 | 130 | border-bottom: solid 5px #38a7bb; |
126 | 131 | line-height: 1.1; |
... | ... | @@ -135,7 +140,12 @@ div.section { |
135 | 140 | .heading h2 i.fa, |
136 | 141 | .heading h3 i.fa, |
137 | 142 | .heading h4 i.fa, |
138 | -.heading h5 i.fa { | |
143 | +.heading h5 i.fa, | |
144 | +.heading .h1 i.fa, | |
145 | +.heading .h2 i.fa, | |
146 | +.heading .h3 i.fa, | |
147 | +.heading .h4 i.fa, | |
148 | +.heading .h5 i.fa { | |
139 | 149 | display: inline-block; |
140 | 150 | background: #38a7bb; |
141 | 151 | width: 30px; |
... | ... | @@ -191,7 +201,10 @@ ul.list-style-none { |
191 | 201 | |
192 | 202 | #text-page h1, |
193 | 203 | #text-page h2, |
194 | -#text-page h3 { | |
204 | +#text-page h3, | |
205 | +#text-page .h1, | |
206 | +#text-page .h2, | |
207 | +#text-page .h3 { | |
195 | 208 | font-weight: 700; |
196 | 209 | } |
197 | 210 | |
... | ... | @@ -201,7 +214,8 @@ ul.list-style-none { |
201 | 214 | margin-bottom: 100px; |
202 | 215 | } |
203 | 216 | |
204 | -#error-page h4 { | |
217 | +#error-page h4, | |
218 | +#error-page .h4 { | |
205 | 219 | margin-bottom: 40px; |
206 | 220 | } |
207 | 221 | |
... | ... | @@ -213,14 +227,16 @@ ul.list-style-none { |
213 | 227 | text-align: center; |
214 | 228 | } |
215 | 229 | |
216 | -.pages-listing .item h3 { | |
230 | +.pages-listing .item h3, | |
231 | +.pages-listing .item .h3 { | |
217 | 232 | font-size: 18px; |
218 | 233 | text-transform: uppercase; |
219 | 234 | margin-bottom: 20px; |
220 | 235 | letter-spacing: 0.08em; |
221 | 236 | } |
222 | 237 | |
223 | -.pages-listing .item h3 a { | |
238 | +.pages-listing .item h3 a, | |
239 | +.pages-listing .item .h3 a { | |
224 | 240 | color: #555555; |
225 | 241 | } |
226 | 242 | |
... | ... | @@ -457,7 +473,8 @@ ul.list-style-none { |
457 | 473 | } |
458 | 474 | } |
459 | 475 | |
460 | -.navbar .yamm-content h3 { | |
476 | +.navbar .yamm-content h3, | |
477 | +.navbar .yamm-content .h3 { | |
461 | 478 | font-size: 18px; |
462 | 479 | text-transform: uppercase; |
463 | 480 | padding-bottom: 10px; |
... | ... | @@ -467,12 +484,14 @@ ul.list-style-none { |
467 | 484 | } |
468 | 485 | |
469 | 486 | @media (max-width: 767px) { |
470 | - .navbar .yamm-content h3 { | |
487 | + .navbar .yamm-content h3, | |
488 | + .navbar .yamm-content .h3 { | |
471 | 489 | font-size: 14px; |
472 | 490 | } |
473 | 491 | } |
474 | 492 | |
475 | -.navbar .yamm-content h5 { | |
493 | +.navbar .yamm-content h5, | |
494 | +.navbar .yamm-content .h5 { | |
476 | 495 | text-transform: uppercase; |
477 | 496 | padding-bottom: 10px; |
478 | 497 | border-bottom: dotted 1px #555555; |
... | ... | @@ -599,7 +618,8 @@ body.boxed .navbar-affixed-top.affix { |
599 | 618 | overflow: hidden; |
600 | 619 | } |
601 | 620 | |
602 | -#login-modal .modal-header h4 { | |
621 | +#login-modal .modal-header h4, | |
622 | +#login-modal .modal-header .h4 { | |
603 | 623 | text-transform: uppercase; |
604 | 624 | } |
605 | 625 | |
... | ... | @@ -878,7 +898,8 @@ fieldset[disabled] .btn-template-primary.active { |
878 | 898 | height: 100%; |
879 | 899 | } |
880 | 900 | |
881 | -#intro .item h1 { | |
901 | +#intro .item h1, | |
902 | +#intro .item .h1 { | |
882 | 903 | text-transform: uppercase; |
883 | 904 | font-size: 50px; |
884 | 905 | color: #fff; |
... | ... | @@ -887,24 +908,28 @@ fieldset[disabled] .btn-template-primary.active { |
887 | 908 | } |
888 | 909 | |
889 | 910 | @media (max-width: 991px) { |
890 | - #intro .item h1 { | |
911 | + #intro .item h1, | |
912 | + #intro .item .h1 { | |
891 | 913 | font-size: 40px; |
892 | 914 | } |
893 | 915 | } |
894 | 916 | |
895 | 917 | @media (max-width: 767px) { |
896 | - #intro .item h1 { | |
918 | + #intro .item h1, | |
919 | + #intro .item .h1 { | |
897 | 920 | font-size: 25px; |
898 | 921 | } |
899 | 922 | } |
900 | 923 | |
901 | -#intro .item h3 { | |
924 | +#intro .item h3, | |
925 | +#intro .item .h3 { | |
902 | 926 | color: #fff; |
903 | 927 | margin-bottom: 40px; |
904 | 928 | } |
905 | 929 | |
906 | 930 | @media (max-width: 767px) { |
907 | - #intro .item h3 { | |
931 | + #intro .item h3, | |
932 | + #intro .item .h3 { | |
908 | 933 | font-size: 15px; |
909 | 934 | margin-bottom: 20px; |
910 | 935 | } |
... | ... | @@ -958,6 +983,9 @@ fieldset[disabled] .btn-template-primary.active { |
958 | 983 | .jumbotron h1, |
959 | 984 | .jumbotron h2, |
960 | 985 | .jumbotron h3, |
986 | +.jumbotron .h1, | |
987 | +.jumbotron .h2, | |
988 | +.jumbotron .h3, | |
961 | 989 | .jumbotron p, |
962 | 990 | .jumbotron ul { |
963 | 991 | color: #fff; |
... | ... | @@ -965,7 +993,10 @@ fieldset[disabled] .btn-template-primary.active { |
965 | 993 | |
966 | 994 | .jumbotron h1, |
967 | 995 | .jumbotron h2, |
968 | -.jumbotron h3 { | |
996 | +.jumbotron h3, | |
997 | +.jumbotron .h1, | |
998 | +.jumbotron .h2, | |
999 | +.jumbotron .h3 { | |
969 | 1000 | color: #ffffff; |
970 | 1001 | text-transform: uppercase; |
971 | 1002 | letter-spacing: 0.08em; |
... | ... | @@ -1011,7 +1042,8 @@ fieldset[disabled] .btn-template-primary.active { |
1011 | 1042 | } |
1012 | 1043 | } |
1013 | 1044 | |
1014 | -#categoryMenu h3 { | |
1045 | +#categoryMenu h3, | |
1046 | +#categoryMenu .h3 { | |
1015 | 1047 | padding: 20px; |
1016 | 1048 | background: #f7f7f7; |
1017 | 1049 | margin: 0; |
... | ... | @@ -1020,7 +1052,8 @@ fieldset[disabled] .btn-template-primary.active { |
1020 | 1052 | letter-spacing: 0.08em; |
1021 | 1053 | } |
1022 | 1054 | |
1023 | -.panel.sidebar-menu h3 { | |
1055 | +.panel.sidebar-menu h3, | |
1056 | +.panel.sidebar-menu .h3 { | |
1024 | 1057 | padding: 5px 0; |
1025 | 1058 | margin: 0; |
1026 | 1059 | } |
... | ... | @@ -1046,7 +1079,12 @@ fieldset[disabled] .btn-template-primary.active { |
1046 | 1079 | .panel.sidebar-menu .panel-heading h2, |
1047 | 1080 | .panel.sidebar-menu .panel-heading h3, |
1048 | 1081 | .panel.sidebar-menu .panel-heading h4, |
1049 | -.panel.sidebar-menu .panel-heading h5 { | |
1082 | +.panel.sidebar-menu .panel-heading h5, | |
1083 | +.panel.sidebar-menu .panel-heading .h1, | |
1084 | +.panel.sidebar-menu .panel-heading .h2, | |
1085 | +.panel.sidebar-menu .panel-heading .h3, | |
1086 | +.panel.sidebar-menu .panel-heading .h4, | |
1087 | +.panel.sidebar-menu .panel-heading .h5 { | |
1050 | 1088 | display: inline-block; |
1051 | 1089 | border-bottom: solid 5px #38a7bb; |
1052 | 1090 | line-height: 1.1; |
... | ... | @@ -1215,12 +1253,16 @@ fieldset[disabled] .btn-template-primary.active { |
1215 | 1253 | } |
1216 | 1254 | |
1217 | 1255 | .panel.sidebar-menu ul.popular li h5, |
1218 | -.panel.sidebar-menu ul.recent li h5 { | |
1256 | +.panel.sidebar-menu ul.recent li h5, | |
1257 | +.panel.sidebar-menu ul.popular li .h5, | |
1258 | +.panel.sidebar-menu ul.recent li .h5 { | |
1219 | 1259 | margin: 0 0 10px; |
1220 | 1260 | } |
1221 | 1261 | |
1222 | 1262 | .panel.sidebar-menu ul.popular li h5 a, |
1223 | -.panel.sidebar-menu ul.recent li h5 a { | |
1263 | +.panel.sidebar-menu ul.recent li h5 a, | |
1264 | +.panel.sidebar-menu ul.popular li .h5 a, | |
1265 | +.panel.sidebar-menu ul.recent li .h5 a { | |
1224 | 1266 | font-weight: normal; |
1225 | 1267 | } |
1226 | 1268 | |
... | ... | @@ -1402,12 +1444,16 @@ fieldset[disabled] .btn-template-primary.active { |
1402 | 1444 | .home-carousel h1, |
1403 | 1445 | .home-carousel h2, |
1404 | 1446 | .home-carousel h3, |
1447 | +.home-carousel .h1, | |
1448 | +.home-carousel .h2, | |
1449 | +.home-carousel .h3, | |
1405 | 1450 | .home-carousel p, |
1406 | 1451 | .home-carousel ul { |
1407 | 1452 | color: #fff; |
1408 | 1453 | } |
1409 | 1454 | |
1410 | -.home-carousel h1 { | |
1455 | +.home-carousel h1, | |
1456 | +.home-carousel .h1 { | |
1411 | 1457 | font-weight: 700; |
1412 | 1458 | text-transform: uppercase; |
1413 | 1459 | font-size: 46px; |
... | ... | @@ -1415,12 +1461,14 @@ fieldset[disabled] .btn-template-primary.active { |
1415 | 1461 | } |
1416 | 1462 | |
1417 | 1463 | @media (max-width: 991px) { |
1418 | - .home-carousel h1 { | |
1464 | + .home-carousel h1, | |
1465 | + .home-carousel .h1 { | |
1419 | 1466 | font-size: 36px; |
1420 | 1467 | } |
1421 | 1468 | } |
1422 | 1469 | |
1423 | -.home-carousel h2 { | |
1470 | +.home-carousel h2, | |
1471 | +.home-carousel .h2 { | |
1424 | 1472 | font-weight: 700; |
1425 | 1473 | text-transform: uppercase; |
1426 | 1474 | font-size: 40px; |
... | ... | @@ -1547,7 +1595,8 @@ fieldset[disabled] .btn-template-primary.active { |
1547 | 1595 | text-align: right; |
1548 | 1596 | } |
1549 | 1597 | |
1550 | -.testimonials .item .testimonial .name-picture h5 { | |
1598 | +.testimonials .item .testimonial .name-picture h5, | |
1599 | +.testimonials .item .testimonial .name-picture .h5 { | |
1551 | 1600 | font-size: 14px; |
1552 | 1601 | text-transform: uppercase; |
1553 | 1602 | letter-spacing: 0.08em; |
... | ... | @@ -1571,14 +1620,16 @@ fieldset[disabled] .btn-template-primary.active { |
1571 | 1620 | margin-bottom: 40px; |
1572 | 1621 | } |
1573 | 1622 | |
1574 | -.team-member h3 { | |
1623 | +.team-member h3, | |
1624 | +.team-member .h3 { | |
1575 | 1625 | font-size: 18px; |
1576 | 1626 | text-transform: uppercase; |
1577 | 1627 | margin-bottom: 5px; |
1578 | 1628 | letter-spacing: 0.08em; |
1579 | 1629 | } |
1580 | 1630 | |
1581 | -.team-member h3 a { | |
1631 | +.team-member h3 a, | |
1632 | +.team-member .h3 a { | |
1582 | 1633 | color: #555555; |
1583 | 1634 | } |
1584 | 1635 | |
... | ... | @@ -1705,7 +1756,7 @@ fieldset[disabled] .btn-template-primary.active { |
1705 | 1756 | transition: all 0.2s ease-out; |
1706 | 1757 | } |
1707 | 1758 | |
1708 | -.box-simple h3 { | |
1759 | +.box-simple h3, .box-simple .h3 { | |
1709 | 1760 | font-weight: normal; |
1710 | 1761 | font-size: 18px; |
1711 | 1762 | text-transform: uppercase; |
... | ... | @@ -1715,7 +1766,7 @@ fieldset[disabled] .btn-template-primary.active { |
1715 | 1766 | letter-spacing: 0.08em; |
1716 | 1767 | } |
1717 | 1768 | |
1718 | -.box-simple h3 a { | |
1769 | +.box-simple h3 a, .box-simple .h3 a { | |
1719 | 1770 | color: #555555; |
1720 | 1771 | } |
1721 | 1772 | |
... | ... | @@ -1807,14 +1858,14 @@ fieldset[disabled] .btn-template-primary.active { |
1807 | 1858 | padding: 0 20px; |
1808 | 1859 | } |
1809 | 1860 | |
1810 | -.box-image .name h3 { | |
1861 | +.box-image .name h3, .box-image .name .h3 { | |
1811 | 1862 | color: #fff; |
1812 | 1863 | text-transform: uppercase; |
1813 | 1864 | font-size: 18px; |
1814 | 1865 | letter-spacing: 0.08em; |
1815 | 1866 | } |
1816 | 1867 | |
1817 | -.box-image .name h3 a { | |
1868 | +.box-image .name h3 a, .box-image .name .h3 a { | |
1818 | 1869 | color: #fff; |
1819 | 1870 | text-decoration: none; |
1820 | 1871 | } |
... | ... | @@ -2209,7 +2260,7 @@ fieldset[disabled] .btn-template-primary.active { |
2209 | 2260 | border: solid 1px #555555; |
2210 | 2261 | } |
2211 | 2262 | |
2212 | -.showcase .item h4 { | |
2263 | +.showcase .item h4, .showcase .item .h4, .showcase .item .counter-wr { | |
2213 | 2264 | color: #555555; |
2214 | 2265 | text-transform: uppercase; |
2215 | 2266 | letter-spacing: 0.08em; |
... | ... | @@ -2217,7 +2268,7 @@ fieldset[disabled] .btn-template-primary.active { |
2217 | 2268 | font-size: 16px; |
2218 | 2269 | } |
2219 | 2270 | |
2220 | -.showcase .item h4 span { | |
2271 | +.showcase .item h4 span, .showcase .item .h4 span, .showcase .item .counter-wr span { | |
2221 | 2272 | font-weight: bold; |
2222 | 2273 | font-size: 51px; |
2223 | 2274 | } |
... | ... | @@ -2335,24 +2386,36 @@ fieldset[disabled] .btn-template-primary.active { |
2335 | 2386 | } |
2336 | 2387 | |
2337 | 2388 | #blog-listing-big .post h2, |
2389 | +#blog-listing-big .post .h2, | |
2338 | 2390 | #blog-homepage .post h2, |
2391 | +#blog-homepage .post .h2, | |
2339 | 2392 | #blog-listing-big .post h4, |
2393 | +#blog-listing-big .post .h4, | |
2394 | +#blog-homepage .post .h4, | |
2340 | 2395 | #blog-homepage .post h4 { |
2341 | 2396 | text-transform: uppercase; |
2342 | 2397 | letter-spacing: 0.08em; |
2343 | 2398 | } |
2344 | 2399 | |
2400 | +#blog-listing-big .post .h2 a, | |
2345 | 2401 | #blog-listing-big .post h2 a, |
2402 | +#blog-homepage .post .h2 a, | |
2346 | 2403 | #blog-homepage .post h2 a, |
2404 | +#blog-listing-big .post .h4 a, | |
2347 | 2405 | #blog-listing-big .post h4 a, |
2406 | +#blog-homepage .post .h4 a, | |
2348 | 2407 | #blog-homepage .post h4 a { |
2349 | 2408 | color: #555555; |
2350 | 2409 | } |
2351 | 2410 | |
2352 | 2411 | #blog-listing-big .post h2 a:hover, |
2412 | +#blog-listing-big .post .h2 a:hover, | |
2353 | 2413 | #blog-homepage .post h2 a:hover, |
2414 | +#blog-homepage .post .h2 a:hover, | |
2354 | 2415 | #blog-listing-big .post h4 a:hover, |
2355 | -#blog-homepage .post h4 a:hover { | |
2416 | +#blog-listing-big .post .h4 a:hover, | |
2417 | +#blog-homepage .post h4 a:hover, | |
2418 | +#blog-homepage .post .h4 a:hover { | |
2356 | 2419 | color: #38a7bb; |
2357 | 2420 | } |
2358 | 2421 | |
... | ... | @@ -2426,6 +2489,7 @@ fieldset[disabled] .btn-template-primary.active { |
2426 | 2489 | margin-bottom: 60px; |
2427 | 2490 | } |
2428 | 2491 | |
2492 | +#blog-listing-medium .post .h2, | |
2429 | 2493 | #blog-listing-medium .post h2 { |
2430 | 2494 | text-transform: uppercase; |
2431 | 2495 | margin: 0 0 10px; |
... | ... | @@ -2433,11 +2497,13 @@ fieldset[disabled] .btn-template-primary.active { |
2433 | 2497 | letter-spacing: 0.08em; |
2434 | 2498 | } |
2435 | 2499 | |
2436 | -#blog-listing-medium .post h2 a { | |
2500 | +#blog-listing-medium .post h2 a, | |
2501 | +#blog-listing-medium .post .h2 a { | |
2437 | 2502 | color: #555555; |
2438 | 2503 | } |
2439 | 2504 | |
2440 | -#blog-listing-medium .post h2 a:hover { | |
2505 | +#blog-listing-medium .post h2 a:hover, | |
2506 | +#blog-listing-medium .post .h2 a:hover { | |
2441 | 2507 | color: #38a7bb; |
2442 | 2508 | } |
2443 | 2509 | |
... | ... | @@ -2557,7 +2623,9 @@ fieldset[disabled] .btn-template-primary.active { |
2557 | 2623 | } |
2558 | 2624 | |
2559 | 2625 | #blog-homepage .post h2, |
2626 | +#blog-homepage .post .h2, | |
2560 | 2627 | #blog-homepage .post h4, |
2628 | +#blog-homepage .post .h4, | |
2561 | 2629 | #blog-homepage .post .author-category, |
2562 | 2630 | #blog-homepage .post .read-more { |
2563 | 2631 | text-align: center; |
... | ... | @@ -2642,7 +2710,9 @@ fieldset[disabled] .btn-template-primary.active { |
2642 | 2710 | } |
2643 | 2711 | |
2644 | 2712 | #blog-post #comments h4, |
2645 | -#blog-post #comment-form h4 { | |
2713 | +#blog-post #comments .h4, | |
2714 | +#blog-post #comment-form h4, | |
2715 | +#blog-post #comment-form .h4 { | |
2646 | 2716 | margin-bottom: 20px; |
2647 | 2717 | } |
2648 | 2718 | |
... | ... | @@ -2681,7 +2751,8 @@ fieldset[disabled] .btn-template-primary.active { |
2681 | 2751 | padding: 10px; |
2682 | 2752 | } |
2683 | 2753 | |
2684 | -.product .text h3 { | |
2754 | +.product .text h3, | |
2755 | +.product .text .h3 { | |
2685 | 2756 | font-size: 14px; |
2686 | 2757 | font-weight: 700; |
2687 | 2758 | height: 39.6px; |
... | ... | @@ -2689,11 +2760,13 @@ fieldset[disabled] .btn-template-primary.active { |
2689 | 2760 | letter-spacing: 0.08em; |
2690 | 2761 | } |
2691 | 2762 | |
2692 | -.product .text h3 a { | |
2763 | +.product .text h3 a, | |
2764 | +.product .text .h3 a { | |
2693 | 2765 | color: #555555; |
2694 | 2766 | } |
2695 | 2767 | |
2696 | -.product .text h3 a:hover { | |
2768 | +.product .text h3 a:hover, | |
2769 | +.product .text .h3 a:hover { | |
2697 | 2770 | text-decoration: none; |
2698 | 2771 | } |
2699 | 2772 | |
... | ... | @@ -2765,7 +2838,8 @@ fieldset[disabled] .btn-template-primary.active { |
2765 | 2838 | text-align: center; |
2766 | 2839 | } |
2767 | 2840 | |
2768 | -#productMain .sizes h3 { | |
2841 | +#productMain .sizes h3, | |
2842 | +#productMain .sizes .h3 { | |
2769 | 2843 | font-weight: 700; |
2770 | 2844 | letter-spacing: 0.08em; |
2771 | 2845 | text-transform: uppercase; |
... | ... | @@ -2815,7 +2889,8 @@ fieldset[disabled] .btn-template-primary.active { |
2815 | 2889 | text-align: center; |
2816 | 2890 | } |
2817 | 2891 | |
2818 | -#product-social h4 { | |
2892 | +#product-social h4, | |
2893 | +#product-social .h4 { | |
2819 | 2894 | font-weight: 300; |
2820 | 2895 | margin-bottom: 10px; |
2821 | 2896 | } |
... | ... | @@ -2926,7 +3001,9 @@ fieldset[disabled] .btn-template-primary.active { |
2926 | 3001 | } |
2927 | 3002 | |
2928 | 3003 | .shipping-method h4, |
2929 | -.payment-method h4 { | |
3004 | +.payment-method h4, | |
3005 | +.shipping-method .h4, | |
3006 | +.payment-method .h4 { | |
2930 | 3007 | text-transform: uppercase; |
2931 | 3008 | letter-spacing: 0.08em; |
2932 | 3009 | } |
... | ... | @@ -2967,7 +3044,13 @@ fieldset[disabled] .btn-template-primary.active { |
2967 | 3044 | #get-it h3, |
2968 | 3045 | #get-it h4, |
2969 | 3046 | #get-it h5, |
2970 | -#get-it h6 { | |
3047 | +#get-it h6, | |
3048 | +#get-it .h1, | |
3049 | +#get-it .h2, | |
3050 | +#get-it .h3, | |
3051 | +#get-it .h4, | |
3052 | +#get-it .h5, | |
3053 | +#get-it .h6 { | |
2971 | 3054 | color: #fff; |
2972 | 3055 | text-transform: uppercase; |
2973 | 3056 | letter-spacing: 0.08em; |
... | ... | @@ -2984,16 +3067,16 @@ fieldset[disabled] .btn-template-primary.active { |
2984 | 3067 | color: #999999; |
2985 | 3068 | } |
2986 | 3069 | |
2987 | -#footer h1, | |
2988 | -#footer h2, | |
2989 | -#footer h3, | |
2990 | -#footer h4, | |
2991 | -#footer h5, | |
2992 | -#footer h6 { | |
3070 | +#footer h1, #footer .h1, | |
3071 | +#footer h2, #footer .h2, | |
3072 | +#footer h3, #footer .h3, | |
3073 | +#footer h4, #footer .h4, | |
3074 | +#footer h5, #footer .h5, | |
3075 | +#footer h6, #footer .h6 { | |
2993 | 3076 | color: #eeeeee; |
2994 | 3077 | } |
2995 | 3078 | |
2996 | -#footer h4 { | |
3079 | +#footer h4, #footer .h4 { | |
2997 | 3080 | font-size: 14px; |
2998 | 3081 | font-weight: 800; |
2999 | 3082 | text-transform: uppercase; |
... | ... | @@ -3062,14 +3145,16 @@ fieldset[disabled] .btn-template-primary.active { |
3062 | 3145 | vertical-align: middle; |
3063 | 3146 | } |
3064 | 3147 | |
3065 | -#footer .blog-entries .item .name h5 { | |
3148 | +#footer .blog-entries .item .name h5, | |
3149 | +#footer .blog-entries .item .name .h5 { | |
3066 | 3150 | margin: 0; |
3067 | 3151 | text-transform: uppercase; |
3068 | 3152 | letter-spacing: 0.08em; |
3069 | 3153 | font-size: 12px; |
3070 | 3154 | } |
3071 | 3155 | |
3072 | -#footer .blog-entries .item .name h5 a { | |
3156 | +#footer .blog-entries .item .name h5 a, | |
3157 | +#footer .blog-entries .item .name .h5 a { | |
3073 | 3158 | color: #eeeeee; |
3074 | 3159 | } |
3075 | 3160 | ... | ... |