Skip to content

Instantly share code, notes, and snippets.

@mhoumark
mhoumark / index.html
Created July 28, 2012 09:23
A web page created at CodePen.io.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CodePen &middot; A Pen by mhoumark</title>
<!--
Copyright (c) 2012 mhoumark, http://codepen.io/mhoumark
Permission is hereby granted, free of charge, to any person obtaining
@mhoumark
mhoumark / dabblet.css
Created May 30, 2012 05:27
Test of CSS Clip
figure {
margin: 0;
}
img {
border: none;
border-radius: 50%;
}
.clip {
@mhoumark
mhoumark / dabblet.css
Created December 21, 2011 19:15 — forked from chriscoyier/dabblet.css
Click open/close Dropdown in pure CSS
/* Click open/close Dropdown in pure CSS */
/* Disclaimer: Not the most semantic
thing in the universe. */
/* Forked from original idea
http://jsfiddle.net/paullferguson/Sv54G/3/ */
.tabs {
position: relative;
@mhoumark
mhoumark / dabblet.css
Created December 16, 2011 07:09
Play with gradients
/**
* Play with gradients
*/
background: #f06;
background: linear-gradient(90deg,black,white);
background: linear-gradient(45deg,#f06,white,white,#f06);