function getCSSString()

in src/app.js [71:78]


function getCSSString() {
  let css = 'body { text-align: center; font-family:verdana; font-size:12px}';
  css = css + 'table { width: 98%; border: 1px solid black; }';
  css = css + 'th { background-color: #f7a105; color: white; font-family:verdana; font-size:12px}';
  css = css + 'th, td { border: 1px; padding: 3px; text-align: center; }';
  css = css + 'tr:nth-child(even) {background-color: #f2f2f2;}';
  return css;
}