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
/** | |
* WIP: Magazine like unordered list inline-block version | |
*/ | |
* { | |
padding: 0; | |
margin: 0; | |
} | |
body { | |
font-family: verdana, sans-serif; |
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
/** | |
* WIP: Magazine like unordered list inline-block version | |
*/ | |
* { | |
padding: 0; | |
margin: 0; | |
} |
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
/** | |
* Horizontal gallery without explicit container width | |
* made with inline-block and box (flex) values for display properties | |
*/ | |
.super-container { | |
width: 50%; | |
overflow-x: auto; | |
} |
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
/** | |
* Test: Overflow Visible, floats and other layout stuff | |
*/ | |
.column-wide { | |
width: 400px; | |
height: 600px; | |
float: left; | |
overflow: visible; | |
background-color: #ffff00; |
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
/* forza il comportamento inline per i figli di .navControl per sicurezza | |
ho preferito usare span invece che label perché la semantica qui non deve esserci, | |
la cosa è funzionale e applicativa secondo me*/ | |
.navControl div, .navControl span, .navControl img { | |
display: inline; | |
vertical-align: middle; | |
} | |
.navControl { | |
height: 96px; |
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 fun exercise brought to you by HTeuMeuLeu: the marcolago's solution | |
* http://www.hteumeuleu.fr | |
* http://www.hteumeuleu.fr/a-css-brain-teaser/ | |
* http://www.twitter.com/HTeuMeuLeu | |
*/ | |
body { padding:50px; background:#2fa7ca; } | |
h1 { font:bold 36px sans-serif; letter-spacing:-1px; color:#000; } |
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 fun exercise brought to you by HTeuMeuLeu. The Alpha Variation | |
* http://www.hteumeuleu.fr | |
* http://www.hteumeuleu.fr/a-css-brain-teaser/ | |
* http://www.twitter.com/HTeuMeuLeu | |
*/ | |
body { padding:50px; background:#2fa7ca; } | |
header { |
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
/** | |
* Display inline-block menu demo | |
*/ | |
* { margin: 0; } | |
ul{ | |
text-align: center; | |
} |
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
/** | |
* Magazine like unordered list | |
*/ | |
* { | |
padding: 0; | |
margin: 0; | |
} | |
body { |
NewerOlder