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
/* 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%); |
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
/* 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%); |
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
/* 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; |
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
body { | |
background-color: #383532; | |
} | |
.my-content { | |
position: relative; | |
width: 600px; | |
height:420px; | |
overflow: hidden; | |
margin: 2em auto; | |
white-space:nowrap; |
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
body { | |
background-color: #383532; | |
} | |
.my-content { | |
position: relative; | |
width: 600px; | |
height:420px; | |
overflow: hidden; | |
margin: 2em auto; | |
white-space:nowrap; |
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
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 { |
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
/* ---------------------------- */ | |
/* == Header */ | |
/* ---------------------------- */ | |
#header { | |
height: 150px; | |
background : url(../img/ordilogie_header_background.png) repeat-x; | |
} |
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
/* 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; |
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
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; |
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
/**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';} |
OlderNewer