Skip to content

Instantly share code, notes, and snippets.

View gcyrillus's full-sized avatar

gcyrillus gcyrillus

View GitHub Profile
@gcyrillus
gcyrillus / dabblet.css
Created June 9, 2012 09:56 — forked from anonymous/dabblet.css
CSS By Gcyrillus find me on facebook or twitter
/* CSS By Gcyrillus find me on facebook or twitter
Send me a message even if it is not
to introduce yourself before requesting friendship :)
have fun with this one ! */
body {
background:#333;
}
div {width:185px;
background:hsl(20, 13%, 28%);
@gcyrillus
gcyrillus / dabblet.css
Created June 9, 2012 10:15 — forked from anonymous/dabblet.css
CSS By Gcyrillus find me on facebook or twitter
/* CSS By Gcyrillus find me on facebook or twitter
Send me a message even if it is not
to introduce yourself before requesting friendship :)
have fun with this one ! */
body {
background:#333;
}
div.menu {width:185px;
background:hsl(20, 13%, 28%);
@gcyrillus
gcyrillus / dabblet.css
Created June 10, 2012 01:06 — forked from anonymous/dabblet.css
fake 2 colums in one div and separate center using :before
/* fake 2 colums in one div and separate center using :before
https://gist.github.com/gcyrillus */
div {
/* preparation visuel facultative pour l'exemple */
border:ridge 3px;
min-height:200px;
width:410px;
margin:3em auto;
padding:5px;
background:#ddd;
@gcyrillus
gcyrillus / dabblet.css
Created June 17, 2012 18:59 — forked from anonymous/dabblet.css
Untitled
body {
background-color: #383532;
}
.my-content {
position: relative;
width: 600px;
height:420px;
overflow: hidden;
margin: 2em auto;
white-space:nowrap;
@gcyrillus
gcyrillus / dabblet.css
Created June 17, 2012 18:59 — forked from anonymous/dabblet.css
Untitled
body {
background-color: #383532;
}
.my-content {
position: relative;
width: 600px;
height:420px;
overflow: hidden;
margin: 2em auto;
white-space:nowrap;
@gcyrillus
gcyrillus / dabblet.css
Created June 29, 2012 15:18 — forked from anonymous/dabblet.css
Untitled
a {
text-decoration:none;
padding:0px 10px;
background:#eee;
line-height:45px;
display:inline-block;
color:#555;
text-shadow:1px 1px 3px white;
}
a.radius {
@gcyrillus
gcyrillus / dabblet.css
Created October 30, 2012 20:05 — forked from anonymous/dabblet.css
----------------------------
/* ---------------------------- */
/* == Header */
/* ---------------------------- */
#header {
height: 150px;
background : url(../img/ordilogie_header_background.png) repeat-x;
}
/* ex de gcyrillus pour http://forum.alsacreations.com/topic-4-64523-1-CSS-et-bords-arrondies-sur-un-tableau-.html#lastofpage */
table {
font-size: .8em;
margin: 0 auto;
width: 96%;
background-color: #A41F1F;
border-collapse: separate;
border-spacing: 0px;
border-radius: 14px;
border:solid 2px #5D1212;
@gcyrillus
gcyrillus / dabblet.css
Created November 10, 2012 19:04 — forked from anonymous/dabblet.css
Untitled
html,body {height:100%;width:100%;position:relative;}
#boite {display:inline-block;
height:50px;width:50px;
text-align:center;
line-height:50px;
border:solid;
position:relative;;
background:yellow;
box-shadow:0 0 15px black;
animation: move 5s infinite;
@gcyrillus
gcyrillus / dabblet.css
Created November 11, 2012 01:51 — forked from anonymous/dabblet.css
modal (gcyrillus)
/**modal (gcyrillus)*/
#modal {outline:none;}
#modal > div {border:solid;
position:absolute;
transform:scale(0);
left:50%;top:50%;
margin-left:-250px;
background:rgba(0,0,0,0.5);
transition:transform 1s;}
#modal:before {content:'ouvrir X';}