This file contains 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
div { | |
background: blue; | |
} | |
.elem { | |
display: inline-block; | |
background: green; | |
height: 100%; | |
width: 1em; | |
} |
This file contains 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 { | |
height: 50%; | |
width: 100%; | |
min-height: 260px; | |
position: relative; | |
text-align: center; | |
background: #FFF; | |
} | |
.cat { | |
width: 100%; |
This file contains 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
/** | |
* Colorize black element with filters | |
* Webkit-only at the moment (Chrome Canary or Webkit nightlies) | |
*/ | |
body { | |
background: pink; | |
} | |
div { |
This file contains 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
/** | |
* Colorize black element with filters | |
* Webkit-only at the moment (Chrome Canary or Webkit nightlies) | |
*/ | |
body { | |
background: pink; | |
} | |
div { |
This file contains 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
/* | |
Chrome Developer Tools - Monokai Color Theme | |
Author: Béres Máté Csaba / bjmatt.com / @bjmatt / [email protected] | |
----------------------------------------------------------------------------------------------------------- | |
Installation: | |
1. Find your Chrome's user stylesheets directory: |
This file contains 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
({ | |
baseUrl: ".", | |
name: "module.js", | |
out: "main-built.js" | |
}) |
This file contains 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
p{ | |
display : none; | |
} | |
p:last-of-type { | |
display : block; | |
} |
This file contains 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
<h1 class="title1">Titre h1 centré</h1> | |
<h1 class="title2">Titre h1 centré</h1> | |
<h1 class="title3">Titre h1 centré</h1> |
This file contains 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
<script> | |
window.location.top = "http://google.com"; | |
</script> |
This file contains 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
/* | |
* Défi intégrateur 1 (http://blog.goetter.fr/post/36084887039/tes-pas-cap-premiere-edition) | |
*/ | |
.title1 { | |
text-align: center; | |
} | |
.title1:before, | |
.title1:after { | |
content: " "; |