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
/* Better Floating Tiles */ | |
* { | |
box-sizing:border-box; | |
} | |
body { | |
margin:0 auto; | |
width:51em; | |
} |
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
/** | |
* A Kind of Reset | |
*/ | |
* { | |
margin:0; | |
padding:0; | |
box-sizing:border-box; | |
border: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
/** | |
* Asides Concept | |
*/ | |
* { | |
box-sizing:border-box; | |
margin:0; | |
} | |
html { |
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
/** | |
* Aspect Ratios | |
*/ | |
html { | |
min-height:100%; | |
} | |
body { | |
background:url(//placehold.it/480x480) no-repeat; |
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
/* Article Index Concept */ | |
* { | |
margin:0; | |
box-sizing:border-box; | |
} | |
html { | |
background-color:#eee; | |
font-size:16px; |
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
/** | |
* Type Scale | |
*/ | |
html { | |
font-family:sans-serif; | |
font-size:12px; | |
} | |
body { |
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
/* | |
* Simple Grid | |
*/ | |
.grid { | |
overflow:auto; | |
} | |
.grid > div { | |
float:left; |
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
/** | |
* UI Pattern: "Horizontal Navigation" | |
*/ | |
nav[role=navigation] { | |
cursor: default; | |
} | |
nav[role=navigation] ul { | |
list-style: none; |
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
/** | |
* UI Pattern: "Breadcrumb" | |
*/ | |
.breadcrumb { | |
display: block; | |
} | |
.breadcrumb a:link:after { | |
content: "/"; |
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
/** | |
* Icon Strategy | |
*/ | |
@font-face { | |
font-family: icons; | |
src: url('//erikdavidjung.com/icons.svg') format('svg'); | |
} | |
.icon { |
OlderNewer