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
| .clearfix:before, | |
| .clearfix:after { | |
| content: " "; | |
| display: table; | |
| } | |
| .clearfix:after { | |
| 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
| https://php.ru/forum/threads/russkij-datepicker-jquery-ui-kak.31798/ | |
| [js] | |
| $.datepicker.regional['ru'] = { | |
| closeText: 'Закрыть', | |
| prevText: '<Пред', | |
| nextText: 'След>', | |
| currentText: 'Сегодня', | |
| monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь', | |
| 'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'], | |
| monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', |
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
| button(data-id="9").minus | |
| input(type="text" placeholder="1" value="1").item-count-9 | |
| button(data-id="9").plus | |
| $('.minus').click(function () { | |
| var itemId = $(this).data('id'); | |
| var input = $('.item-count-' + itemId); | |
| var count = parseInt(input.val()) - 1; |
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
| ====Jade==== | |
| #overlay | |
| ... | |
| form#popup | |
| input | |
| input | |
| ====Sass==== |
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
| node_modules/ | |
| dist/ | |
| /*сюда соберется уже конечный продукт*/ | |
| css/ | |
| fonts/ | |
| img/ | |
| js/ | |
| index.html | |
| src/ | |
| bower_components/ |
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
| <!-- HTML --> | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>INFO 4 HIM</title> |
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
| <!-- HTML --> | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Change window</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css"/> |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Change window</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css"/> | |
| <link href='http://fonts.googleapis.com/css?family=Titillium+Web:400,300italic,200,200italic,300,400italic,600,600italic,700,700italic,900' rel='stylesheet' type='text/css'> |
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
| <!-- HTML --> | |
| <div class="container"> | |
| <div class="slider"> | |
| <div class="left"></div> | |
| <ul> | |
| <li><img src="img/1.jpg" height="300" width="500" alt=""></li> | |
| <li><img src="img/2.jpg" height="300" width="500" alt=""></li> | |
| <li><img src="img/3.jpg" height="300" width="500" alt=""></li> | |
| <li><img src="img/4.jpg" height="300" width="500" alt=""></li> |
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
| doctype html | |
| <!--[if lt IE 9]> | |
| <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | |
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |
| <![endif]--> | |
| html(lang='en') |
NewerOlder