Skip to content

Instantly share code, notes, and snippets.

View JakobTischler's full-sized avatar

Jakob Tischler JakobTischler

View GitHub Profile
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="es-ES">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width">
<title>Toptaller Newsletter Especial &mdash; Horario verano</title>
<style type="text/css">
body {
background-color:#E9E9E9;
@JakobTischler
JakobTischler / dabblet.css
Created February 19, 2012 11:00
Merging String with Array
/**
* Merging String with Array
*/
;
@JakobTischler
JakobTischler / dabblet.css
Created December 19, 2011 17:16
Untitled
div { transition:all 0.5s; }
.container{width:200px;}
.box { opacity:0.666667; width: 200px; height: 200px; background: red; margin-bottom: 20px; cursor: pointer;}
.container:hover .box:hover {
opacity:1;
}
.container:hover .box:not(:hover) {