Проект, номер задачи и описание изменений: PROJECT-1234 Добавлена форма регистрации
Популярные практики контроля качества веб-проекта. Гайд разбит на Системмы Качества (набор практик для контроля определенной части проекта) и Точки Интерации.
A. (quality system) Code - Исходный код, документация, тесты
- (integration point) IntelliSense via [IDE Extensions]
- (integration point) IDE Status Bar via [IDE Tasks]
- (integration point) Git via [Git Hooks]
- (integration point) GitHub via [GitHub Workflow]
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
| @import 'https://fonts.googleapis.com/css?family=Open+Sans'; | |
| * { | |
| -webkit-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font-family: 'Open Sans', sans-serif; | |
| line-height: 1.75em; |
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
| $(document).ready(function() { | |
| function heightDetect() { | |
| $(".main_head").css("height", $(window).height()); | |
| }; | |
| heightDetect(); | |
| $(window).resize(function() { | |
| heightDetect(); | |
| }); |