Skip to content

Instantly share code, notes, and snippets.

@jklm313
jklm313 / dabblet.css
Created June 19, 2012 17:35 — forked from anonymous/dabblet.css
Untitled
body {
margin:0;
padding: 0;
font: 100%;
min-height: 100%;
}
header, article, aside,
footer, nav, lubberofzelda { float: left }
@jklm313
jklm313 / dabblet.css
Created June 22, 2012 13:53 — forked from anonymous/dabblet.css
CSS3 ribbon (modified from Chris Coyier)
/* CSS3 ribbon (modified from Chris Coyier) */
/* a bit sloppy eh!*/
.wrapper {
margin: 50px auto;
width: 280px;
height: 370px;
background: linear-gradient (top, rgba(255,255,255,1), #d9d9d9);
@jklm313
jklm313 / dabblet.css
Created June 22, 2012 14:29 — forked from anonymous/dabblet.css
Untitled
*{margin: 0; padding: 0;}
html, body {
height: 100%
}
body {
text-align: center;
background: linear-gradient(top, white, #aeaeae);
}
@jklm313
jklm313 / dabblet.css
Created June 24, 2012 21:42
Untitled
body {
font-family: sans-serif;
padding-top: 60px;
}
.mainmenu {
position:absolute;
z-index:100;
}
@jklm313
jklm313 / dabblet.css
Created July 18, 2012 17:03
Untitled
body, body * {
margin: 0;
padding: 0;
}
body * {
position: relative;
box-sizing: border-box;
display: inline-block;
@jklm313
jklm313 / dabblet.css
Created July 20, 2012 16:58
Untitled
body, body * {margin: 0; padding: 0; box-sizing: border-box; position: relative}
body {background: #222; color: white}
.sidebar {
float: left;
width: 20%;
min-width: 150px;
height: 100%;
@jklm313
jklm313 / dabblet.css
Created July 22, 2012 13:06
Untitled
* {box-sizing: border-box}
.container {
width: 100%;
height: 100%;
float: left;
/*visual*/
color: white;
@jklm313
jklm313 / dabblet.css
Created July 24, 2012 20:07
Untitled
.calc-emulator {
width: 600px;
border-left: 200px solid transparent;
box-sizing: border-box;
/*visual*/
background: skyblue;
height: 280px;
}
@jklm313
jklm313 / dabblet.css
Created July 25, 2012 03:50
Untitled
.calc-emulator {
width: 50%;
border-left: 200px solid transparent;
box-sizing: border-box;
/*visual*/
background: skyblue;
height: 280px;
}
@jklm313
jklm313 / dabblet.css
Created July 25, 2012 17:28
Untitled
* {margin: 0; padding: 0; box-sizing: border-box; position: relative}
html, body {
width: 100%;
height: 100%;
}
body {
background: #999;
font-size: 100%;