Skip to content

Instantly share code, notes, and snippets.

View nielsdoorn's full-sized avatar
🏗️
Building better software testing education

Niels Doorn nielsdoorn

🏗️
Building better software testing education
View GitHub Profile
@nielsdoorn
nielsdoorn / dabblet.css
Created February 18, 2012 08:18 — forked from koenveldhuizen/dabblet.css
Very simple css3 polaroid styling
/**
* Very simple css3 polaroid styling
*/
body{
background: #f06;
background: linear-gradient(45deg, orange, yellow);
min-height:100%;
}
div.photo{
width:200px;
@nielsdoorn
nielsdoorn / dabblet.css
Created February 26, 2012 10:02
items mooi invoegen
/**
* items mooi invoegen
*/
#items {
list-style-type: none;
}
.item {
display:block;
@nielsdoorn
nielsdoorn / dabblet.css
Created March 3, 2012 18:46
network attempt
/** * network attempt */
ol, ul {
list-style: none;
}
.network {
position: relative;
top: 20px;
left: 40px;
@nielsdoorn
nielsdoorn / dabblet.css
Created March 4, 2012 13:19
network attempt
/** * network attempt */
ol, ul {
list-style: none;
}
.network {
position: relative;
top: 20px;
left: 40px;
@nielsdoorn
nielsdoorn / dabblet.css
Created March 5, 2012 16:46
parallax testje
/**
* parallax testje
*/
ul {
list-style-type:none;
}
img {
max-width: 720px;
@nielsdoorn
nielsdoorn / index.html
Created June 21, 2012 15:39
A web page created at CodePen.io
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bouncing rectangle on canvas &middot; CodePen</title>
<link rel="stylesheet" href="http://codepen.io/stylesheets/css/normalize.css">
@nielsdoorn
nielsdoorn / index.html
Created June 21, 2012 15:45
A web page created at CodePen.io
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bouncing rectangle on canvas &middot; CodePen</title>
<link rel="stylesheet" href="http://codepen.io/stylesheets/css/normalize.css">
@nielsdoorn
nielsdoorn / index.html
Created June 21, 2012 15:49
A web page created at CodePen.io
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bouncing rectangle on canvas &middot; CodePen</title>
<link rel="stylesheet" href="http://codepen.io/stylesheets/css/normalize.css">
@nielsdoorn
nielsdoorn / index.html
Created June 21, 2012 15:49
A web page created at CodePen.io
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bouncing rectangle on canvas &middot; CodePen</title>
<link rel="stylesheet" href="http://codepen.io/stylesheets/css/normalize.css">
@nielsdoorn
nielsdoorn / index.html
Created September 7, 2012 15:13
just a simple example to introduce javascript a little bit
<div id="form">
<form id="daForm">
<h2>Type your own lines here</h2>
Line 1 <input type="text" id="i1" placeholder="program" /><br/>
Line 2 <input type="text" id="i2" placeholder="calm" /><br/>
Line 3 <input type="text" id="i3" placeholder="and" /><br/>
Line 4 <input type="text" id="i4" placeholder="script"/><br/>
Line 5 <input type="text" id="i5" placeholder="on"/><br/>
</form>
</div>