Skip to content

Instantly share code, notes, and snippets.

View dbpoo's full-sized avatar
🎮
Focusing

WEI WEI dbpoo

🎮
Focusing
View GitHub Profile
@dbpoo
dbpoo / dabblet.css
Created March 27, 2013 06:50
Untitled
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>CSS3 column demo</title>
<style type='text/css'>
.cols3 {
-webkit-column-count: 4;
-webkit-column-gap: 20px;
@dbpoo
dbpoo / dabblet.css
Created December 13, 2012 07:21 — forked from LeaVerou/dabblet.css
Pounding heart animation
/* Pounding heart animation */
@keyframes pound {
to { transform: scale(1.4); }
}
.heart {
display: inline-block;
font-size: 150px;
color: #e00;
@dbpoo
dbpoo / dabblet.css
Created December 13, 2012 07:12 — forked from LeaVerou/dabblet.css
Pounding heart animation
/* Pounding heart animation */
@keyframes pound {
50% { transform: scale(1.4); }
}
.heart {
display: inline-block;
font-size: 150px;
color: #e00;
@dbpoo
dbpoo / dabblet.css
Created December 13, 2012 07:01 — forked from anonymous/dabblet.css
Pounding heart animation
/* Pounding heart animation */
@keyframes pound {
from { transform: none; }
50% { transform: scale(1.4); }
to { transform: none; }
}
.heart {
display: inline-block;
@dbpoo
dbpoo / dabblet.css
Created December 13, 2012 05:57 — forked from LeaVerou/dabblet.css
Pounding heart animation
/* Pounding heart animation */
@keyframes pound {
from, to { transform: none; }
50% { transform: scale(1.4); }
}
.heart {
display: inline-block;
font-size: 150px;