Skip to content

Instantly share code, notes, and snippets.

View Leikam's full-sized avatar

Dimitry Leikam

View GitHub Profile
(function () {
'use strict';
/**
* @author <a href="mailto:[email protected]">Konstantin Kitmanov</a>
* May be freely distributed under the MIT license.
*/
function ResourceRegistry () {
@Leikam
Leikam / gulpfile.js
Last active August 29, 2015 14:15 — forked from Insayt/gulpfile.js
'use strict';
var gulp = require('gulp'),
watch = require('gulp-watch'),
prefixer = require('gulp-autoprefixer'),
uglify = require('gulp-uglify'),
cssmin = require('gulp-cssmin'),
sass = require('gulp-sass'),
sourcemaps = require('gulp-sourcemaps'),
rigger = require('gulp-rigger'),
@Leikam
Leikam / dabblet.css
Created May 10, 2014 12:09 — forked from anonymous/dabblet.css
reset.css
/* reset.css */
a {
color: black;
text-decoration: none;
font-size: 2em;
font-family: Zapfino;
}
/* main.css */
var Suteki = Suteki || {};
Suteki.new_eventBus = (function(){
var self = {};
var subscriptions = {};
var unsubscribeTokens = [];
var subscriptionPointers = [];
@Leikam
Leikam / dabblet.css
Created May 20, 2013 13:54 — forked from anonymous/dabblet.css
конкретный размер текста на боди не имеет значения
/*
конкретный размер текста на боди не имеет значения
body {font-size: 16px}*/
/* block */
#q #w {font-size: 2em}
#w {font-size: 2em}
/* 1st pseudo */
#w:before{
display: block;
@Leikam
Leikam / dabblet.css
Created May 6, 2013 12:07 — forked from anonymous/dabblet.css
Полу-анимация: начинается в точке -delay/duration
body {margin: 0}
div {
width: 200px;
height: 200px;
background: khaki;
/* Полу-анимация: начинается в точке -delay/duration */
/*transition: transform 2s linear -.75s}*/
/* Анимация с отрицательным значением прогресса?..*/
transition: transform 1s cubic-bezier(.5, -.45, .5, 1.45)
}
@Leikam
Leikam / dabblet.css
Created May 3, 2013 09:34 — forked from anonymous/dabblet.css
Polymorph
div {
width: 200px;
height: 200px;
margin: auto;
overflow: hidden;
}
#e {
background-color: lightblue;
transform: rotate(-65deg);
animation: rotateCCW 10s linear infinite;
@Leikam
Leikam / dabblet.css
Created May 3, 2013 09:30 — forked from anonymous/dabblet.css
Untitled
div {
width: 200px;
height: 200px;
margin: auto;
overflow: hidden;
}
#e {
background-color: lightblue;
transform: rotate(-65deg);
animation: rotateCW 12s linear infinite;