Skip to content

Instantly share code, notes, and snippets.

@ynonp
ynonp / dabblet.css
Created November 24, 2012 18:20
Untitled
div#viewport {
border: 5px solid hotpink;
width: 320px;
height: 180px;
position:relative;
margin: 0 auto;
}
div div {
width: 320px;
@ynonp
ynonp / dabblet.css
Created November 24, 2012 18:22
Untitled
body { padding: 0; margin: 0; }
h1 { margin: 0; padding: 0; }
footer {
background: yellow;
padding: 5px;
}
header {
background: cyan;
@ynonp
ynonp / dabblet.css
Created November 25, 2012 06:44
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@ynonp
ynonp / dabblet.css
Created November 26, 2012 11:01
Untitled
input.pretty {
border:1px solid #ccc;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
border-radius: 8px;
width:134px;
height:15px;
margin:0;
padding: 2px 7px 0px 7px;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
@ynonp
ynonp / dabblet.css
Created November 27, 2012 15:05
Untitled
div {
position: absolute;
left: 200px;
top: 200px;
z-index: 99;
background: #333;
padding: 20px;
border-radius: 8px;
color: white;
}
@ynonp
ynonp / ajax1.html
Created November 29, 2012 08:32
ajax1 - before templates
<!DOCTYPE html>
<html>
<head>
<title>MagicIdea</title>
<meta name="viewport" content="width=device-width" >
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
@ynonp
ynonp / cam.html
Created November 29, 2012 12:19
came
<!DOCTYPE html>
<html>
<head>
<title>Camera Demo</title>
<meta name="viewport" content="width=device-width" />
</head>
<body>
<input type="file" accept="image/*" id="imageLoader"/>
<canvas id="imageCanvas" width=300 height="300"></canvas>
@ynonp
ynonp / dabblet.html
Created December 11, 2012 09:26
Untitled
<a href="#">
<img width=200 height=auto src="http://fc02.deviantart.net/fs21/f/2007/306/d/6/Chibi_turtle_by_blackcattlc.jpg">
</a>
@ynonp
ynonp / grid.html
Created December 14, 2012 15:35 — forked from anonymous/grid.html
<!DOCTYPE html>
<html>
<head>
<title>Image Grid Lab</title>
<style>
</style>
</head>
<body>
<ul>
@ynonp
ynonp / dabblet.css
Created December 20, 2012 09:43
Untitled
nav ul { list-style: none; padding-left: 0;}
nav li { display: inline-block; }
nav a {
padding: 10px;
background: #a7a7a7;
display: inline-block;
text-decoration: none;
margin-right: 10px;
color: white;
border-radius: 12px;