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
{ | |
"workbench.colorTheme": "One Dark Pro", | |
"editor.minimap.maxColumn": 80, | |
"workbench.editor.showTabs": true, | |
"terminal.integrated.shell.windows": "C:\\Windows\\system32\\cmd.exe", | |
"terminal.integrated.shellArgs.windows": [ | |
"/k C:\\PortableApps\\cmder\\vendor\\init.bat" | |
], | |
"workbench.startupEditor": "none", | |
"workbench.activityBar.visible": true, |
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
/* Подключение шрифтов в HTML | |
* <link href="https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400,700|Roboto:100,300,400,500,700,900" rel="stylesheet"> | |
*/ | |
$font-primary: 'Roboto', sans-serif; | |
$font-header: 'Roboto Slab', serif; | |
$font-icon: 'FontAwesome'; | |
$font-size: 16px; | |
$container-width: 1320px; |
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
### Custom .gitignore template | |
# Folders | |
.idea/ | |
.vscode/ | |
node_modules/ | |
dist/ | |
build/ | |
# Files | |
.DS_Store |
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
$color-primary: #232323; | |
$color-accent: #ee3b24; | |
$color-dark: #010101; | |
$color-gray: #545454; | |
$color-light: #fefefe; |
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
// Reset margin, padding and list-style from a list. | |
@mixin unlist($m: 0, $p: 0) { | |
margin: $m; | |
padding: $p; | |
list-style: none; | |
} | |
// Single-line text with a three-dot at the end |
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
$diff: 0.2px; | |
/* xl */ | |
@mixin xl-min { | |
@media (min-width: $xl) { | |
@content; | |
} | |
} | |
@mixin xl { |
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
$diff: 0.2px; | |
/* ul */ | |
@mixin ul-min { | |
@media (min-width: $ul) { | |
@content; | |
} | |
} | |
@mixin ul { |
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
--modules-folder libs |
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
Show hidden characters
{ | |
"presets": [ | |
"@babel/preset-env" | |
], | |
"plugins": [ | |
"@babel/plugin-proposal-class-properties" | |
] | |
} |
OlderNewer