This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| root: true, | |
| env: { | |
| node: true, | |
| }, | |
| plugins: [ | |
| "@typescript-eslint", | |
| "smells", | |
| "filenames", | |
| "eslint-plugin-local-rules", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| .items_table{ | |
| border: 1px solid #000; | |
| font-size: 14px; | |
| color: #000; | |
| width: 100%; | |
| border-collapse: collapse; | |
| margin: 15px 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| .items_table{ | |
| border: 1px solid #000; | |
| font-size: 14px; | |
| color: #000; | |
| width: 100%; | |
| border-collapse: collapse; | |
| margin: 15px 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Высчитываем комиссию на возврат и записываем значение в кнопку | |
| $('.money-return__input--summ').keyup( function () { | |
| var returnValue = $(this).val(); | |
| var calculatedPay = Number(returnValue) - (returnValue / 100 * 5).toFixed(); | |
| if(!calculatedPay <= 0){ | |
| $('.summWrapper').css('display', 'inline-block'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .grid,.unit { | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| box-sizing: border-box | |
| } | |
| .grid { | |
| display: block; | |
| clear: both | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="pay-bonus"> | |
| <span class="pay-bonus__text pay-bonus__text--big">с бонусом +30р.</span> | |
| <span class="pay-bonus__text">за завершение платежа</span> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .pay-bonus { | |
| position: absolute; | |
| bottom: 10px; | |
| right: 40px; | |
| width: 190px; | |
| height: 40px; | |
| background-color: #f1f408; | |
| box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3); | |
| padding: 3px 0 0 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="livedrop-wrapper"> | |
| <div class="livedrop"> | |
| <div class="livedrop__item livedrop__item--light-blue"> | |
| <div class="livedrop__pic-wrapper"> | |
| <img src="//cdn.x-api.net/sm/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgposbaqKAxf1OD3djFN79fnzL-chfbgO6LCqWZU7Mxkh9bN9J7yjRrmqBFpMDrwJIKXIQJtM16G-Fa_yLi60MO7uJjKmCMy73Yl5SrfzBG-n1gSOaOppFd7/115fx115f" alt="" class="livedrop__pic"> | |
| </div> | |
| <div class="livedrop__pic-wrapper livedrop__pic-wrapper--hover"> | |
| <img src="https://elitecase.net/theme/images/glove.png" alt="" class="livedrop__pic"> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .livedrop-wrapper{ | |
| position: relative; | |
| width: 100%; | |
| height: 150px; | |
| clear: both; | |
| background: #0f121b; | |
| border-top: 1px solid #2a2e38; | |
| border-bottom: 1px solid #2a2e38; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .faq-block{ | |
| position: relative; | |
| width: 840px; | |
| margin: 0 auto 50px auto; | |
| } | |
| .faq-block__item{ | |
| position: relative; | |
| width: 100%; | |
| margin-bottom: 10px; |
NewerOlder