25 lines
504 B
CSS
25 lines
504 B
CSS
|
/* #docregion */
|
||
|
/* 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;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* See https://github.com/angular/angular.io/blob/master/public/docs/_examples/styles.css
|
||
|
* for the full set of master styles used by the documentation samples
|
||
|
*/
|
||
|
|