Commit a6fbbea1a2135e8510fe4cd659ec43dcff98ca1c
1 parent
c5e4de77
styles
Showing
2 changed files
with
27 additions
and
28 deletions
Show diff stats
frontend/views/layouts/main.php
... | ... | @@ -330,9 +330,9 @@ |
330 | 330 | ?> |
331 | 331 | |
332 | 332 | <div class="row calculate-main-wr"> |
333 | - <div class="col-md-10 col-md-offset-1"> | |
334 | - <div style="width:100%;max-width:500px;margin:0 auto;"> | |
335 | - <p style="font-weight:bold;"><?= \Yii::t('app', 'contact_datas') ?></p> | |
333 | + <div class="col-md-10 col-md-offset-1" style="margin-top: -10px;margin-bottom: -5px;"> | |
334 | + <div style="width:100%;max-width: 920px;margin:0 auto;"> | |
335 | + <p style="font-weight:bold;margin-bottom: -10px;"><?= \Yii::t('app', 'contact_datas') ?></p> | |
336 | 336 | |
337 | 337 | <?= $form->field($feedback, 'topic') |
338 | 338 | ->hiddenInput(['value' => Feedback::SCENARIO_CALCULATOR]) |
... | ... | @@ -376,25 +376,24 @@ |
376 | 376 | |
377 | 377 | <div class="col-md-6"> |
378 | 378 | <p class="coord1"><?= \Yii::t('app', 'coord1_title') ?>:</p> |
379 | - | |
380 | - <?=$form->field($feedback, "latitude") | |
381 | - ->textInput() | |
382 | - ->label( | |
383 | - \Yii::t( | |
384 | - 'app', | |
385 | - 'Latitude' | |
386 | - ) | |
387 | - )?> | |
388 | - | |
389 | - <?=$form->field($feedback, "longitude") | |
390 | - ->textInput() | |
391 | - ->label( | |
392 | - \Yii::t( | |
393 | - 'app', | |
394 | - 'Longitude' | |
395 | - ) | |
396 | - )?> | |
397 | - | |
379 | + <div class="row"> | |
380 | + <div class="col-md-6"><?=$form->field($feedback, "latitude") | |
381 | + ->textInput() | |
382 | + ->label( | |
383 | + \Yii::t( | |
384 | + 'app', | |
385 | + 'Latitude' | |
386 | + ) | |
387 | + )?></div> | |
388 | + <div class="col-md-6"><?=$form->field($feedback, "longitude") | |
389 | + ->textInput() | |
390 | + ->label( | |
391 | + \Yii::t( | |
392 | + 'app', | |
393 | + 'Longitude' | |
394 | + ) | |
395 | + )?></div> | |
396 | + </div> | |
398 | 397 | <?=$form->field($feedback, "south_deviation") |
399 | 398 | ->textInput() |
400 | 399 | ->label( |
... | ... | @@ -408,10 +407,10 @@ |
408 | 407 | </div> |
409 | 408 | |
410 | 409 | <div class="row"> |
411 | - <div class="col-md-6 text-center"> | |
410 | + <div class="col-md-offset-1 col-md-5 text-center"> | |
412 | 411 | <img src="/img/form_img_1.jpg" class="img-responsive"> |
413 | 412 | </div> |
414 | - <div class="col-md-6 text-center"> | |
413 | + <div class="col-md-5 text-center"> | |
415 | 414 | <img src="/img/form_img_2.jpg" class="img-responsive"> |
416 | 415 | </div> |
417 | 416 | </div> |
... | ... | @@ -424,7 +423,7 @@ |
424 | 423 | <div class="col-md-12"> |
425 | 424 | <p style="font-weight:bold;"><?= \Yii::t('app', 'info_power_ses') ?></p> |
426 | 425 | <div class="row"> |
427 | - <div class="col-md-12"> | |
426 | + <div class="col-md-12" style="margin-top: -10px;margin-bottom: -10px;"> | |
428 | 427 | <div class="row" style="margin-bottom: 15px;"> |
429 | 428 | |
430 | 429 | <?=$form->field($feedback, "power_station_type") | ... | ... |
frontend/web/css/main.css
... | ... | @@ -289,9 +289,9 @@ section.blue-fon {padding-top: 25px;} |
289 | 289 | text-align: center; |
290 | 290 | } |
291 | 291 | #video-bg .arrow_bottom a{ |
292 | - font-size: 72px; | |
293 | - color: rgba(255, 255, 255, 0.3); | |
294 | - transition:0.2s; | |
292 | + font-size: 100px; | |
293 | + color: rgba(255, 255, 255, 0.5); | |
294 | + transition: 0.2s; | |
295 | 295 | } |
296 | 296 | #video-bg .arrow_bottom a:hover{ |
297 | 297 | color: rgba(255, 255, 255, 0.8); | ... | ... |