1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
.fm_maturity_complete,
.fm_impl_complete {
color: rgb(0, 120, 0);
font-weight: normal;
}
.fm_maturity_deprecated,
.fm_impl_missing {
color: rgb(120, 0, 0);
font-weight: normal;
}
.fm_maturity_experimental,
.fm_impl_partial {
color: rgb(170, 170, 0);
font-weight: normal;
}
.fm_maturity_incomplete,
.fm_impl_unknown {
color: rgb(170, 170, 170);
font-weight: normal;
}
.fm_impl_summary {
font-size: 2em;
}
.fm_cli {
font-family: monospace;
background-color: #F5F5F5;
}
|