Skip to content

Instantly share code, notes, and snippets.

Keymap (Windows Users):
[
{ "keys": ["alt+shift+f"], "command": "reindent" },
]
Settings:
{
"show_definitions": false,
"auto_complete": false,
"bold_folder_labels": true,
@maximsv
maximsv / search
Created August 18, 2017 18:49
Поиск Google
@maximsv
maximsv / Подключение стилей и скриптов в functions
Created December 23, 2017 15:06
Подключение стилей и скриптов в functions
<?php bloginfo('template_url'); ?>
<!-- Путь до изображений -->
<?php
// Подключение стилей и скриптов в functions.php
function register_styles() {
wp_register_style('my-bootstrap', get_template_directory_uri() .
'/libs/bootstrap/bootstrap-grid-3.3.1.min.css');
wp_enqueue_style('my-bootstrap');
@maximsv
maximsv / button.sass
Created September 16, 2018 04:36 — forked from agragregra/button.sass
Button Sass Styles (Universal Starter)
.button
display: inline-block
border: none
color: #fff
text-decoration: none
background-color: $accent
padding: 15px 45px
font-size: 13px
text-transform: uppercase
font-weight: 600
@maximsv
maximsv / before for menu.txt
Last active July 8, 2019 19:27
наведение на before for menu
a.nav-link::before{
content: "☴";
color: #fff;
position: relative;
left:-15px;
opacity:0;
z-index:3;
}
a.nav-link:hover:before {
color: #fff;