view src/shared.ts @ 17:472003015880

restyle using css grid
author drewp@bigasterisk.com
date Fri, 07 Jun 2024 21:22:37 -0700
parents deb0c25655eb
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;
  }
`;