view service/wifi/src/style.ts @ 1481:b3ef0886d16c

fix glow Ignore-this: 6f374683408f724d42abf3aaf7570e2b darcs-hash:28dcc6f183715a865367974607abe390fa83c9db
author drewp <drewp@bigasterisk.com>
date Mon, 06 Jan 2020 22:43:48 -0800
parents 817da2dc80fc
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;
  }
`;