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
<link rel="stylesheet" href="/c/d.min.css"> | |
<link rel="stylesheet" href="/c/a.min.css" media="only screen"> |
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
@supports (display: flex) { | |
.project--minipromo[data-imaged] { | |
display: flex; | |
flex-wrap: none; | |
padding: 0; | |
} | |
.project--minipromo[data-imaged] picture { | |
flex: 0 1 50%; | |
margin-right: 1.375rem; | |
} |
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
main { | |
padding: 0 .5em; | |
} | |
@media (min-width: 20em) { | |
main { | |
padding: 0 1.375rem; | |
} | |
} |
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
#intro { | |
/* Basic styles for IE6 */ | |
} | |
/* More styles here */ | |
body[id=css-zen-garden] #intro { | |
/* Advanced styles for everyone else */ | |
} |
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
*:-o-prefocus { | |
color: blue; | |
} |
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
code { | |
font-size: 1.6875rem; | |
} | |
*:-o-prefocus, | |
code { | |
font-size: inherit; | |
} |
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:link, a:visited { | |
color: #046; | |
border-bottom: 1px dotted; | |
border-bottom-color: rgba(0, 68, 102, 0.25); | |
} |
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
<label for="n">What’s your name?</label> | |
<input id="n" name="n" | |
required aria-required="true" | |
autocorrect="off" autocapitalize="words" | |
placeholder="Sir Tim Berners Lee" | |
autocomplete="name" | |
> |
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
<nav class="global-navigation" role="navigation" | |
aria-label="main navigation"> | |
… | |
</nav> |
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
<label for="first_name">What’s your first name?</label> | |
<input name="first_name" id="first_name"> |