view src/shared.ts @ 21:a90cb6927c7d default tip

fix countdown queries. Display "now" instead of "In -0.4 hours"
author drewp@bigasterisk.com
date Sat, 07 Sep 2024 17:47:36 -0700
parents 472003015880
children
line wrap: on
line source

import { css } from "lit";

export const shared = css`
  :host {
    display: inline-block;
  }

  h1 {
    margin: -4px 0 -16px 0;
    font-family: "Acme", sans-serif !important;
    font-size:30px;
    color: #00fbff;
    text-shadow: 1px 3px 1px #726262;
  }
  ol {
    list-style: none;
    font-size: 16px;
    padding-inline-start: 5px;
  }
  span.d {
    opacity: 0.5;
  }

  span.t {
    color: #50fa7b;
  }
`;