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
/** | |
* flexbox menu 2 | |
* http://forum.selfhtml.org/self/2015/apr/27/menue-horizontal-ausrichten/1638793#m1638793 | |
*/ | |
html | |
{ | |
padding: 0; | |
background: hsl(240, 60%, 4%); | |
font: bold 1em/1.2 Helvetica, sans-serif; | |
color: hsl(30, 40%, 80%); |
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
/** | |
* vertically centered | |
*/ | |
figure | |
{ | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
width: 12em; |
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
/** | |
* optgroup | |
*/ |
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
/** | |
* Flexbox: 7 pictures | |
*/ | |
figure | |
{ | |
display: flex; | |
align-items: center; | |
margin: 0; | |
} |
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
/** | |
* star rating (clip-path) | |
*/ | |
figure | |
{ | |
margin: 0; | |
width: 100%; | |
height: 0%; | |
padding-top: 20%; |
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
/** | |
* description list | |
*/ | |
dl { font: 1.5em/1.25 Georgia; width: 20em; margin: 1.25em auto } | |
dt, dd { display: inline; margin: 0 } | |
dt { font-style: italic } |
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
/** | |
* hexagon clip-path | |
*/ | |
div | |
{ | |
width: 400px; | |
height: 346px; /* ½√3 × width */ | |
position: relative; | |
overflow: hidden; |
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
/** | |
* fake hexagon mask | |
*/ | |
div | |
{ | |
width: 200px; | |
position: relative; | |
} |
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
/** | |
* collapse empty table rows | |
*/ | |
table | |
{ | |
border-collapse: collapse; | |
} | |
td |
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
/** | |
* Flexbox too | |
*/ | |
html | |
{ | |
background: white; | |
display: flex; | |
flex-direction: column; | |
justify-content: center; |