This file contains 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
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png"> | |
<link rel="icon" type="image/png" href="favicon/favicon-32x32.png" sizes="32x32"> | |
<link rel="icon" type="image/png" href="favicon/favicon-16x16.png" sizes="16x16"> | |
<link rel="manifest" href="favicon/manifest.json"> | |
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#2ac394"> | |
<meta name="msapplication-TileColor" content="#2ac394"> | |
<meta name="msapplication-TileImage" content="favicon/mstile-150x150.png"> | |
<meta name="msapplication-config" content="favicon/browserconfig.xml" /> |
This file contains 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
input { | |
-moz-appearance:textfield; | |
&::-webkit-outer-spin-button, | |
&::-webkit-inner-spin-button { | |
-webkit-appearance: none; | |
} | |
} |
This file contains 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
function isMobile() { | |
if ( | |
navigator.userAgent.match(/Android/i) || | |
navigator.userAgent.match(/webOS/i) || | |
navigator.userAgent.match(/iPhone/i) || | |
navigator.userAgent.match(/iPad/i) || | |
navigator.userAgent.match(/iPod/i) || | |
navigator.userAgent.match(/BlackBerry/i) || | |
navigator.userAgent.match(/Windows Phone/i) | |
) { |
This file contains 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
В переменные среды добавить CMDER_ROOT: <путь к папке cmder> | |
{ | |
"workbench.colorTheme": "Ayu Mirage", | |
"workbench.iconTheme": "ayu", | |
"extensions.ignoreRecommendations": false, | |
"window.zoomLevel": 0, | |
"terminal.integrated.shellArgs.windows": [ | |
"cmd /k", | |
"%CMDER_ROOT%\\vendor\\init.bat" |
This file contains 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
ymaps.ready(init); | |
var myMap, | |
myPlacemark; | |
var places = [ | |
{ | |
name: 'Точка № 1', | |
lat: 48.471125, | |
long: 135.058703 | |
}, |
This file contains 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
-webkit-user-select: none; /* Chrome/Safari */ | |
-moz-user-select: none; /* Firefox */ | |
-ms-user-select: none; /* IE10+ */ |
This file contains 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
@media | |
only screen and (-webkit-min-device-pixel-ratio: 2), | |
only screen and ( min--moz-device-pixel-ratio: 2), | |
only screen and ( -o-min-device-pixel-ratio: 2/1), | |
only screen and ( min-device-pixel-ratio: 2), | |
only screen and ( min-resolution: 192dpi), | |
only screen and ( min-resolution: 2dppx) { | |
} |
This file contains 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
$('#slider') | |
.on('init', function () { | |
$(this).removeClass('slider--before-init'); | |
}) | |
.slick({ | |
arrows: false, | |
autoplay: true, | |
autoplaySpeed: 5000, | |
infinite: true, | |
speed: 300, |
This file contains 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
.parent { | |
column-count: 3; | |
} | |
.child { | |
break-inside: avoid-column; | |
} | |
This file contains 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
ymaps.ready(function () { | |
var geocoder = ymaps.geocode("{{ object_item.address }}", {result: 1}); | |
geocoder.then( | |
function (res) { | |
var point = res.geoObjects.get(0), | |
mapCenter = point.geometry.getCoordinates(); | |
var map = new ymaps.Map('map', { | |
center: mapCenter, |
OlderNewer