Skip to content

Instantly share code, notes, and snippets.

@ramsesoriginal
ramsesoriginal / dabblet.css
Created September 10, 2012 12:54
Rounded image
/**
* Rounded image
*/
img {
max-width: 400px;
max-height: 300px;
border-radius: 100px;
}
@ramsesoriginal
ramsesoriginal / dabblet.css
Created September 17, 2012 09:37
rounded corner streteched image with padding on IE8 *
/** rounded corner streteched image with padding on IE8 **/
img {
height: 100%;
display: block;
float: left;
z-index: -1;
}
.gonzdrinnen {
@ramsesoriginal
ramsesoriginal / dabblet.css
Created October 16, 2012 13:29
White on White
/*
White on White
*/
font-size: 30px;
color: #fff;
background-color: #fff;
text-shadow: 1px 1px 1px #000000;
filter: dropshadow(color=#000000, offx=1, offy=1);
@ramsesoriginal
ramsesoriginal / dabblet.css
Created October 26, 2012 07:25
Gastropool offline
/**
* Gastropool offline
*/
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,400);
html {
background: #ed6e09;
padding:0;
margin:0;
@ramsesoriginal
ramsesoriginal / dabblet.css
Created November 23, 2012 09:12
Layout doodles
/**
* Layout doodles
*/
* {
box-sizing: border-box;
transition: all 0.5s ease;
vertical-align: middle;
}
html {
@ramsesoriginal
ramsesoriginal / dabblet.css
Created January 18, 2013 09:04
doodling menu
/**
* doodling menu
*/
@ramsesoriginal
ramsesoriginal / dabblet.css
Created January 23, 2013 13:14
doodling menu
/**
* doodling menu
*/
* {
box-sizing: border-box;
transition: all 0.5s ease;
vertical-align: middle;
}
@ramsesoriginal
ramsesoriginal / dabblet.css
Created February 19, 2013 10:21
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.container {
width: 800px;
height: 800px;
position: relative;
}
@ramsesoriginal
ramsesoriginal / dabblet.css
Created April 29, 2013 08:49
Collapsing menu using flexbox
/**
* Collapsing menu using flexbox
*/
ul {
list-style: none;
display: block;
position: relative;
padding: 0;
margin: 0;
@ramsesoriginal
ramsesoriginal / dabblet.css
Created September 6, 2013 06:49
Example for images with copyable code sample on click
/**
* Example for images with copyable code sample on click
*/
*:focus {
outline: none;
}
figure {
box-sizing: border-box;
width: 440px;