
* add a dev/dartdoc.dart script to generate docs for the packages/ packages * remove description * rename readme * change to using --include-external * move docs to dev/docs
50 lines
1.2 KiB
HTML
50 lines
1.2 KiB
HTML
<!-- style overrides for dartdoc -->
|
|
<style>
|
|
header {
|
|
background-color: #917FFF;
|
|
}
|
|
|
|
body {
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
color: #111;
|
|
background-color: #fdfdfd;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: 300;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 42px !important;
|
|
letter-spacing: -1px;
|
|
line-height: 1;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 32px;
|
|
}
|
|
|
|
pre > code {
|
|
font-size: 14px;
|
|
}
|
|
</style>
|
|
|
|
<!-- The following rules are from http://google.github.io/material-design-icons/ -->
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<style>
|
|
/* Rules for sizing the icon. */
|
|
.material-icons.md-18 { font-size: 18px; }
|
|
.material-icons.md-24 { font-size: 24px; }
|
|
.material-icons.md-36 { font-size: 36px; }
|
|
.material-icons.md-48 { font-size: 48px; }
|
|
|
|
/* Rules for using icons as black on a light background. */
|
|
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
|
|
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
|
|
|
|
/* Rules for using icons as white on a dark background. */
|
|
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
|
|
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
|
|
</style>
|