This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.box-shadow { | |
-webkit-box-shadow: 0 1px 3px #aaa; /* Webkit */ | |
-moz-box-shadow: 0 1px 3px #aaa; /* Gecko */ | |
box-shadow: 0 1px 3px #aaa; /* CSS3 default, should be after vendor-specific properties */ | |
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=0, Strength=2) | |
progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=45, Strength=1) | |
progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=90, Strength=2) | |
progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=135, Strength=1) | |
progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=180, Strength=2) | |
progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=225, Strength=1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=DATE(1970;1;1)+(LEFT(A1;10)/24/60/60) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Get data via YQL | |
* | |
* @author Marc Görtz (http://marcgoertz.de/) | |
* @see https://gist.github.com/420381 | |
* @license http://creativecommons.org/licenses/by-sa/3.0/de/ | |
* @param string $select YQL query | |
* @param string $format output format, either 'json' or 'xml' (default: 'json') | |
* @param string $method HTTP method for accessing YQL (default: 'GET') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section class="vevent" itemscope itemtype="http://microformats.org/profile/hcalendar#vevent"> | |
<h1 class="summary" itemprop="summary"><a href="http://event.url/" class="url" itemprop="url" rel="bookmark">Event Title</a></h1> | |
<p class="description" itemprop="description">Event Description</p> | |
<ul> | |
<li>Datetime: <time class="dtstart" itemprop="dtstart" datetime="2010-05-06T19:00:00Z">May 6th @ 7pm</time> until <time class="dtend" itemprop="dtend" title="2010-05-06T21:00:00Z">9pm</time></li> | |
<li>Location: <span class="location" itemprop="location">Location</span></li> | |
</ul> | |
</section> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<img src="http://www.google.com/s2/favicons?domain=yourdomain.tld" width="16" height="16" alt="Favicon"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="search" name="q" id="q" results="5" autosave="tld.yourdomain" placeholder="Type your search terms" autofocus> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset=utf-8> | |
<title>Start</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select name="country"> | |
<option value="DE" selected>Deutschland</option> | |
<option value="AT">Österreich</option> | |
<option value="CH">Schweiz</option> | |
<optgroup label="A"> | |
<option value="AF">Afghanistan</option> | |
<option value="EG">Ägypten</option> | |
<option value="AX">Åland</option> | |
<option value="AL">Albanien</option> | |
<option value="DZ">Algerien</option> |