docs(aio): create styles.css snippet file for toh-pt5 example

This commit is contained in:
Peter Bacon Darwin 2017-06-08 15:08:19 +01:00 committed by Pete Bacon Darwin
parent 8a9a5ecdd7
commit c0dcb342f3
2 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,22 @@
/* Master Styles */
h1 {
color: #369;
font-family: Arial, Helvetica, sans-serif;
font-size: 250%;
}
h2, h3 {
color: #444;
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
}
body {
margin: 2em;
}
body, input[text], button {
color: #888;
font-family: Cambria, Georgia;
}
/* everywhere else */
* {
font-family: Arial, Helvetica, sans-serif;
}

View File

@ -1200,7 +1200,7 @@ These correspond to the full set of master styles that you installed earlier dur
Here's an excerpt:
<code-example path="toh-pt5/src/styles.css" region="toh" title="src/styles.css (excerpt)">
<code-example path="toh-pt5/src/styles.1.css" title="src/styles.css (excerpt)">
</code-example>