Skip to content

Instantly share code, notes, and snippets.

@alexeyten
alexeyten / Makefile
Created December 6, 2011 15:19 — forked from kazuhisya/README.md
npm.spec
file=$(shell rpm -q --specfile npm.spec --qf 'npm-%{version}.tgz')
rpm: $(file)
rpmbuild -ba npm.spec \
--define '_sourcedir $(CURDIR)' \
--define '_builddir $(CURDIR)' \
--define '_srcrpmdir $(CURDIR)' \
--define '_rpmdir $(CURDIR)'
mv noarch/* .
rm -rf noarch package
@alexeyten
alexeyten / dabblet.css
Created March 14, 2012 07:39 — forked from pepelsbey/dabblet.css
Untitled
BODY { background: #dda1ee }
/**
* Candy
*/
html {
background-color: silver;
background-image: linear-gradient(45deg, gray 25%, transparent 25%, transparent 75%, gray 75%, gray),
linear-gradient(45deg, gray 26%, transparent 26%, transparent 75%, gray 75%, gray);
background-size:20px 20px;
background-position:0 0, 10px 10px;
min-height: 100%;
@alexeyten
alexeyten / dabblet.css
Created May 14, 2012 07:44 — forked from anonymous/dabblet.css
Green button
/**
* Green button
*/
body {
padding-top: 100px;
font: 24px/1.2 'Arial', sans-serif;
}
.button {
position: absolute;
@alexeyten
alexeyten / dabblet.css
Created September 19, 2012 06:40 — forked from pepelsbey/dabblet.css
Untitled
button {
position:relative;
display:block;
margin:50px;
padding:0;
width:250px;
height:50px;
border:none;
border-radius:50px;
@alexeyten
alexeyten / dabblet.css
Created October 19, 2012 06:09 — forked from kizu/dabblet.css
The difference between inline and block absolutes
/* The difference between inline and block absolutes */
@alexeyten
alexeyten / dabblet.css
Created July 6, 2016 13:13 — forked from csssecrets/dabblet.css
Frosted glass effect
/**
* Frosted glass effect
*/
body {
min-height: 100vh;
box-sizing: border-box;
margin: 0;
padding-top: calc(50vh - 6em);
font: 150%/1.6 Baskerville, Palatino, serif;