Skip to content

Instantly share code, notes, and snippets.

@Alecto
Alecto / toggle-button-snippet
Last active November 24, 2023 17:36
Кнопка адаптивного меню с анимацией
https://codepen.io/designcouch/pen/Atyop
https://codepen.io/FomenkoAndrey/pen/wEeKKM
<!-- HTML -->
<div class="header-navbar__btn">
<span class="header-navbar__btn-row"></span>
<span class="header-navbar__btn-row"></span>
<span class="header-navbar__btn-row"></span>
@Alecto
Alecto / VSCode-settings.json
Last active June 10, 2019 11:16
VSCode settings.json
{
"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,
@Alecto
Alecto / _variables.scss
Last active January 9, 2023 16:55
Переменные SCSS variables
/* Подключение шрифтов в 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;
@Alecto
Alecto / .gitignore
Last active June 10, 2019 12:50
Конфиг .gitignore
temp/
node_modules/
.idea/
@Alecto
Alecto / _skin.scss
Last active October 20, 2022 17:50
Скин SCSS skin
$color-primary: #232323;
$color-accent: #ee3b24;
$color-dark: #010101;
$color-gray: #545454;
$color-light: #fefefe;
@Alecto
Alecto / _mixins.scss
Last active December 4, 2023 08:52
mixins, миксины SCSS
// 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
@Alecto
Alecto / _mixins-media.scss
Last active December 2, 2022 15:32
@media mixins, миксины, диапазон стандарт: xl, lg, md, sm, xs
$diff: 0.2px;
/* xl */
@mixin xl-min {
@media (min-width: $xl) {
@content;
}
}
@mixin xl {
@Alecto
Alecto / _mixins-media.scss
Last active December 2, 2022 15:32
@media mixins, миксины, диапазон ultra: ul, xl, lg, md, sm, xs, xx, ux
$diff: 0.2px;
/* ul */
@mixin ul-min {
@media (min-width: $ul) {
@content;
}
}
@mixin ul {
@Alecto
Alecto / .yarnrc
Created June 2, 2019 14:01
Конфиг расположения библиотеки .yarnrc
--modules-folder libs
@Alecto
Alecto / .babelrc
Last active June 17, 2019 15:38
Конфигурация плагина Babel
{
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}