Commit 60554f71f4f3cb8076d89ddc13f52fa1284f8d28
1 parent
c0c887b9
feedback
Showing
3 changed files
with
34 additions
and
2 deletions
Show diff stats
frontend/views/layouts/main.php
| ... | ... | @@ -374,7 +374,7 @@ _________________________________________________________ --> |
| 374 | 374 | <div class="modal-content"> |
| 375 | 375 | <div class="modal-header"> |
| 376 | 376 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> |
| 377 | - <h3 class="modal-title" id="Login">Feedback</h3> | |
| 377 | + <h3 class="modal-title" id="Login">Обратная связь</h3> | |
| 378 | 378 | </div> |
| 379 | 379 | <div class="modal-body"> |
| 380 | 380 | |
| ... | ... | @@ -404,7 +404,7 @@ _________________________________________________________ --> |
| 404 | 404 | |
| 405 | 405 | <p class="text-center"> |
| 406 | 406 | <?= Html::submitButton( |
| 407 | - 'Send', | |
| 407 | + 'Отправить', | |
| 408 | 408 | [ |
| 409 | 409 | 'class' => 'send-form btn btn-lg btn-template-primary', |
| 410 | 410 | ] | ... | ... |
frontend/views/site/legal.php
| ... | ... | @@ -68,6 +68,14 @@ $this->registerJs($js, View::POS_END); |
| 68 | 68 | </div> |
| 69 | 69 | </div> |
| 70 | 70 | </section> |
| 71 | + <section class="bar background-gray steps-pre"> | |
| 72 | + <div class="container"> | |
| 73 | + <div class="row text-center"> | |
| 74 | + <h2>Этапы работ</h2> | |
| 75 | + <p>8 шагов к энергонезависимости</p> | |
| 76 | + </div> | |
| 77 | + </div> | |
| 78 | + </section> | |
| 71 | 79 | <section class="bar background-kben ptop30 no-mb card1"> |
| 72 | 80 | <div class="container"> |
| 73 | 81 | <div class="row"> | ... | ... |
frontend/web/css/main.css
| ... | ... | @@ -378,6 +378,30 @@ footer .social-logos a:hover { |
| 378 | 378 | .main-slider .carousel-control.right { |
| 379 | 379 | justify-content: flex-start; |
| 380 | 380 | } |
| 381 | +.steps-pre{ | |
| 382 | + margin:0; | |
| 383 | + text-transform: uppercase; | |
| 384 | + padding: 40px 0; | |
| 385 | + padding-top: 50px; | |
| 386 | + position: relative; | |
| 387 | + overflow: unset; | |
| 388 | +} | |
| 389 | +section.bar.background-gray.steps-pre:before { | |
| 390 | + content: ''; | |
| 391 | + width: 50px; | |
| 392 | + height: 50px; | |
| 393 | + position: absolute; | |
| 394 | + left: calc(50% - 25px); | |
| 395 | + bottom: -25px; | |
| 396 | + -webkit-transform: rotate(45deg); | |
| 397 | + transform: rotate(45deg); | |
| 398 | + background: #eeeeee; | |
| 399 | + z-index: 1; | |
| 400 | +} | |
| 401 | +.steps-pre h2{ | |
| 402 | + margin: 4px 0; | |
| 403 | + font-size: 42px; | |
| 404 | +} | |
| 381 | 405 | #get-it {padding: 30px 0 10px;} |
| 382 | 406 | #main-page .blue-fon .heading h2{border:none;} |
| 383 | 407 | .main-slider .carousel-inner, .main-slider .carousel-inner > .item {height:100%;width:100%;position:relative;} | ... | ... |