pub const TMPL_HTML_CSS_COMMON: &str = r#"table, th, td { font-weight: normal; }
table.center {
  margin-left: auto;
  margin-right: auto;
  background-color: #f3f2e4;
  border:1px solid grey;
}
th, td {
  padding: 3px;
  padding-left:15px;
  padding-right:15px;
}
th.key{ color:#444444; text-align:right; }
th.val{
  color:#316128;
  text-align:left;
  font-family:sans-serif;
}
th.keygrey{ color:grey; text-align:right; }
th.valgrey{ color:grey; text-align:left; }
"#;
Expand description

A constant holding common CSS code, used as embedded code in the TMPL_HTML_EXPORTER template and as referenced code in the TMPL_HTML_VIEWER template.