view service/wifi/src/style.ts @ 1476:817da2dc80fc

kind of running with lit-element and polymer together. lots of data missing from table still Ignore-this: db24e7b633929b01430b0794c1a065dc darcs-hash:cdb1d499a42b869d6affa3ee226f408358a59cf4
author drewp <drewp@bigasterisk.com>
date Sun, 05 Jan 2020 23:18:27 -0800
parents
children 90bb6287b31b
line wrap: on
line source

import { css } from "lit-element";

export const style = css`
  .report {
    font-family: sans-serif;
  }
  section {
    margin-left: 1em;
  }
  .dev {
    margin-bottom: 2px;
  }
  .ip,
  .mac,
  .packets,
  .bytes {
    display: inline-block;
    font-family: monospace;
  }
  .packets,
  .bytes {
    text-align: right;
    padding-right: 1em;
  }
  .mac {
    color: #ccffcc;
    width: 11em;
  }
  .ip {
    color: #b5b5d4;
    width: 6em;
  }
  .packets {
    color: #2da1a5;
    width: 6em;
  }
  .bytes {
    color: #a5912d;
    width: 9em;
  }
  th,
  td {
    vertical-align: top;
  }
  th {
    background: #333;
  }
  td {
    background: #252525;
  }
`;