Skip to content

Instantly share code, notes, and snippets.

View zverush's full-sized avatar
🚀
WordPress

Aleynikov Sergey zverush

🚀
WordPress
View GitHub Profile
.blur {
-webkit-filter:blur(3px);
-ms-filter:blur(3px);
-moz-filter:blur(3px);
-o-filter:blur(3px);
filter:blur(3px);
filter:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cfilter%20id%3D%22blur%22%3E%3CfeGaussianBlur%20stdDeviation%3D%223%22/%3E%3C/filter%3E%3C/svg%3E#blur")
}
@zverush
zverush / Rouble Symbol
Last active December 22, 2019 08:02
Rouble Font Woff from PT Sans
/* ==========================================================================
Rouble Font Woff from PT Sans
Use: <span class="rub">руб.</span>
========================================================================== */
.rub {
font-family: 'rub';
}
@font-face {
@zverush
zverush / .htaccess
Created January 19, 2015 09:36
Кеширование картинок
<ifModule mod_headers.c>
#кэшировать флэш и изображения на месяц
<FilesMatch "\.(flv|swf|ico|gif|jpg|jpeg|png)$">
Header set Cache-Control "max-age=2592000"
</FilesMatch>
#отключить кэширование
<FilesMatch "\.(pl|php|cgi|spl|scgi|fcgi)$">
Header unset Cache-Control
</FilesMatch>
</IfModule>