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
@echo off | |
set BASE_BACKUP_DIR=D:\dev\.local_databases | |
set MYSQL_USER=root | |
set MYSQL_PASSWORD= | |
set MYSQL_HOST=mysql-8.0 | |
set MYSQL_PORT=3306 | |
set TIMESTAMP=%date:~-4,4%%date:~-7,2%%date:~0,2%_%time:~0,2%%time:~3,2% | |
set TIMESTAMP=%TIMESTAMP: =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
// HTML-форма | |
// Статья: Вменяемая инструкция к PHPMailer “Отправка писем и файлов на почту | |
// Статья: ”Стилизация и кастомизация File Inputs | |
<form class="form" action="#" method="post" id="sendform" enctype="multipart/form-data"> | |
<fieldset> | |
<div class="first-row"> | |
<div class="first-row_first-block"> | |
<input class="first-block__input" name="location" type="text" placeholder="Местонахождение объекта оценки: *" |
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
// Плавный скролл по якорям | |
$('a[href*=#]').bind("click", function(e) { | |
var anchor = $(this); | |
/* | |
//-- начало -- отступ для фиксированого меню | |
if (document.documentElement.clientWidth <= 749) { | |
var otskok = 150; | |
} else { |