Skip to content

Instantly share code, notes, and snippets.

View thanpolas's full-sized avatar

Thanos Polychronakis thanpolas

View GitHub Profile
@thanpolas
thanpolas / dabblet.css
Created December 17, 2012 16:22 — forked from anonymous/dabblet.css
Untitled
body {
background: blue;
padding:0;
}
header {
height: 200px;
background-color: red;
margin: 0;
display:block;
overflow: hidden;
@thanpolas
thanpolas / dabblet.css
Created December 17, 2012 15:58
Untitled
header {
width: 100%;
height: 200px;
background-color: red;
margin: 0;
display:block;
}
header div {
margin-top:50px;
@thanpolas
thanpolas / dabblet.css
Created December 16, 2012 22:46
Untitled
.container > p {
background-color: yellow;
min-height: 150px;
box-shadow: inset 0 5px 10px 1px rgba(0, 0, 0, 0.45), 0 5px 10px 1px rgba(0, 0, 0, 0.25);
}
@thanpolas
thanpolas / dabblet.css
Created December 16, 2012 17:26
Untitled
.container > p:last-child {
background-color: yellow;
}
@thanpolas
thanpolas / dabblet.css
Created December 12, 2012 14:00
Untitled
.container {
width: 100%;
}
.col1 {
width: 200px;
float: left;
margin-left: 20px;
background-color: #ddd;
}
@thanpolas
thanpolas / dabblet.css
Created December 12, 2012 14:00
Untitled
.container {
width: 100%;
}
.col1 {
width: 200px;
float: left;
margin-left: 20px;
background-color: #ddd;
}
@thanpolas
thanpolas / dabblet.css
Created December 11, 2012 12:55
Untitled
.codeblock {
width: 600px;
height: 200px;
background-color: yellow;
display: block;
}
.lineno {
background-color: #ddd;
width: 60px;
}
@thanpolas
thanpolas / dabblet.css
Created December 10, 2012 15:46
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.envelope {
font-size: 650%;
font-family: Courier;
}
@thanpolas
thanpolas / dabblet.css
Created November 30, 2012 13:44
the mark
/**
* the mark
*/
body {
text-align: center;
margin-top: 20px;
}
.thanpolas {
font-size: 202px;
-webkit-border-radius: 12px;
@thanpolas
thanpolas / gist:4153379
Created November 27, 2012 09:49
Google Closure events wiring
myApp.Event = function(){};
goog.inherits(myApp.Event, goog.events.Event);
// --- in another file --- //
myApp.ClassOne = function(){
goog.base(this);