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
/** | |
* Übung CSS3-Pseudoklassen | |
*/ | |
html, body { | |
background: #FFF; | |
} | |
ul { | |
font-size: 18px; |
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
/** | |
* Tab-Navigation mit CSS3-Selektoren | |
*/ | |
body { | |
padding: 2em 0; | |
} | |
/* Platzierung der Tab-Navigation */ |
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
/** | |
* Übung Adaptives Layout | |
*/ | |
body { padding: 2.5%; } | |
div { margin: 0 2.5% 2.5%; height: 80px; border-radius: 8px; } | |
/* Mittleres Layout */ | |
@media screen and (min-width: 500px){ |
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
/** | |
* Übung Adaptives Layout | |
*/ | |
body { padding: 2.5%; } | |
div { margin: 0 2.5% 2.5%; height: 80px; border-radius: 8px; } | |
/* An's Werk! */ |
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
/** | |
* flexible fluid <figure> and <figcaption> | |
*/ | |
html * { font-size:100%; } | |
body { | |
background: #efefef; | |
min-height:100%; | |
font-size: 85%; |
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
irc = require 'irc' | |
http = require 'http' | |
# Client erstellen | |
bot_name = 'Hixie' | |
bot_channels = ['#webhonks'] | |
bot = new irc.Client 'irc.freenode.net', bot_name, { | |
userName: 'hixie' | |
realName: 'Ein Bot in CoffeeScript', |
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
# Git-Branch im Terminal anzeigen und den Lambda-Hacker raushängen lassen | |
underline=`tput smul` | |
nounderline=`tput rmul` | |
bold=`tput bold` | |
normal=`tput sgr0` | |
GIT_PS1_SHOWDIRTYSTATE=1 | |
PS1='${bold}λ ${normal}\w$(__git_ps1 " [${underline}%s${nounderline}]") \$ ' |
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
// Quelle: http://www.quirksmode.org/js/findpos.html | |
function findPos(obj){ | |
var curleft = 0, curtop = 0; | |
if(obj.offsetParent){ | |
do { | |
curleft += obj.offsetLeft; | |
curtop += obj.offsetTop; | |
} while(obj = obj.offsetParent); | |
} | |
return [curleft, curtop]; |
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
var stylus = require('stylus'), | |
connect = require('connect'), | |
nib = require('nib'); | |
var basepath = '/..'; | |
var compile = function(str, path){ | |
return stylus(str) | |
.set('filename', path) | |
.set('warn', true) |
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
// Kommentare | |
#KommentareListe | |
list-style none | |
counter-reset kommentare | |
&:not(:empty) | |
border-bottom 1px dotted $border | |
.comment | |
clear both | |
border-top 1px dotted $border | |
&:first-child |