Skip to content

Instantly share code, notes, and snippets.

/*****************************************************************
*
* Copy Layer text 1.0 - by Praveen Vijayan! - http://www.decodize.com/
*
* Compatibility above Photoshop CS6
*
* Licensed under the Creative Commons Attribution 2.5 License - http://creativecommons.org/licenses/by/2.5/
*
*****************************************************************/
@aalexeev239
aalexeev239 / type.html
Last active September 20, 2022 13:54
typography page
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
<link rel="stylesheet" href="css/style.css">
</head>
@aalexeev239
aalexeev239 / gist:a943fd66b7ade6c376ee
Created March 8, 2015 13:21
first-child-state / LESS / Sublime Text 3
<snippet>
<content><![CDATA[
&:first-child {
${1}
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>fch</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.less</scope>
@aalexeev239
aalexeev239 / gist:30b7d77987a0ff31061f
Created March 8, 2015 13:20
hover-state / LESS / Sublime Text 3
<snippet>
<content><![CDATA[
&:hover {
${1}
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>hvr</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.less</scope>
@aalexeev239
aalexeev239 / mkfavicon.sh
Last active August 29, 2015 14:11 — forked from pfig/mkfavicon.sh
#!/bin/bash
# from
# http://bergamini.org/computers/creating-favicon.ico-icon-files-with-imagemagick-convert.html
convert source-WxW.png -resize 256x256 -transparent white favicon-256.png
convert favicon-256.png -resize 16x16 favicon-16.png
convert favicon-256.png -resize 32x32 favicon-32.png
convert favicon-256.png -resize 64x64 favicon-64.png
convert favicon-256.png -resize 128x128 favicon-128.png